Models
Types

Models

articulo_deposito_importacion

Fields

Name Type Attributes Required Comment
id_articulo_deposito_importacion Int
  • @id
Yes -
cod_deposito String?
  • -
No -

Operations

findUnique

Find zero or one Articulo_deposito_importacion

// Get one Articulo_deposito_importacion
const articulo_deposito_importacion = await prisma.articulo_deposito_importacion.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where articulo_deposito_importacionWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Articulo_deposito_importacion

// Get one Articulo_deposito_importacion
const articulo_deposito_importacion = await prisma.articulo_deposito_importacion.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where articulo_deposito_importacionWhereInput No
orderBy articulo_deposito_importacionOrderByWithRelationInput[] | articulo_deposito_importacionOrderByWithRelationInput No
cursor articulo_deposito_importacionWhereUniqueInput No
take Int No
skip Int No
distinct Articulo_deposito_importacionScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Articulo_deposito_importacion

// Get all Articulo_deposito_importacion
const Articulo_deposito_importacion = await prisma.articulo_deposito_importacion.findMany()
// Get first 10 Articulo_deposito_importacion
const Articulo_deposito_importacion = await prisma.articulo_deposito_importacion.findMany({ take: 10 })

Input

Name Type Required
where articulo_deposito_importacionWhereInput No
orderBy articulo_deposito_importacionOrderByWithRelationInput[] | articulo_deposito_importacionOrderByWithRelationInput No
cursor articulo_deposito_importacionWhereUniqueInput No
take Int No
skip Int No
distinct Articulo_deposito_importacionScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Articulo_deposito_importacion

// Create one Articulo_deposito_importacion
const Articulo_deposito_importacion = await prisma.articulo_deposito_importacion.create({
  data: {
    // ... data to create a Articulo_deposito_importacion
  }
})

Input

Name Type Required
data articulo_deposito_importacionCreateInput | articulo_deposito_importacionUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Articulo_deposito_importacion

// Delete one Articulo_deposito_importacion
const Articulo_deposito_importacion = await prisma.articulo_deposito_importacion.delete({
  where: {
    // ... filter to delete one Articulo_deposito_importacion
  }
})

Input

Name Type Required
where articulo_deposito_importacionWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Articulo_deposito_importacion

// Update one Articulo_deposito_importacion
const articulo_deposito_importacion = await prisma.articulo_deposito_importacion.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data articulo_deposito_importacionUpdateInput | articulo_deposito_importacionUncheckedUpdateInput Yes
where articulo_deposito_importacionWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Articulo_deposito_importacion

// Delete a few Articulo_deposito_importacion
const { count } = await prisma.articulo_deposito_importacion.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where articulo_deposito_importacionWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Articulo_deposito_importacion

const { count } = await prisma.articulo_deposito_importacion.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data articulo_deposito_importacionUpdateManyMutationInput | articulo_deposito_importacionUncheckedUpdateManyInput Yes
where articulo_deposito_importacionWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Articulo_deposito_importacion

// Update or create a Articulo_deposito_importacion
const articulo_deposito_importacion = await prisma.articulo_deposito_importacion.upsert({
  create: {
    // ... data to create a Articulo_deposito_importacion
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Articulo_deposito_importacion we want to update
  }
})

Input

Name Type Required
where articulo_deposito_importacionWhereUniqueInput Yes
create articulo_deposito_importacionCreateInput | articulo_deposito_importacionUncheckedCreateInput Yes
update articulo_deposito_importacionUpdateInput | articulo_deposito_importacionUncheckedUpdateInput Yes

Output

Required: Yes
List: No

articulos

Fields

Name Type Attributes Required Comment
idArticulo Int
  • @id
  • @default(autoincrement())
Yes -
nombre String?
  • -
No -
categoria Int?
  • -
No -
stock Int?
  • -
No -
estado Int?
  • @default(1)
No -
precioCompra Decimal?
  • -
No -
precioVenta Decimal?
  • -
No -
stockMinimo Int?
  • -
No -
entrada Boolean?
  • -
No -
salida Boolean?
  • -
No -
tipo_modelo String?
  • -
No -
descripcion String?
  • -
No -
serie String?
  • -
No -
codigo String?
  • -
No -

Operations

findUnique

Find zero or one Articulos

// Get one Articulos
const articulos = await prisma.articulos.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where articulosWhereUniqueInput Yes

Output

Type: articulos
Required: No
List: No

findFirst

Find first Articulos

// Get one Articulos
const articulos = await prisma.articulos.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where articulosWhereInput No
orderBy articulosOrderByWithRelationInput[] | articulosOrderByWithRelationInput No
cursor articulosWhereUniqueInput No
take Int No
skip Int No
distinct ArticulosScalarFieldEnum[] No

Output

Type: articulos
Required: No
List: No

findMany

Find zero or more Articulos

// Get all Articulos
const Articulos = await prisma.articulos.findMany()
// Get first 10 Articulos
const Articulos = await prisma.articulos.findMany({ take: 10 })

Input

Name Type Required
where articulosWhereInput No
orderBy articulosOrderByWithRelationInput[] | articulosOrderByWithRelationInput No
cursor articulosWhereUniqueInput No
take Int No
skip Int No
distinct ArticulosScalarFieldEnum[] No

Output

Type: articulos
Required: Yes
List: Yes

create

Create one Articulos

// Create one Articulos
const Articulos = await prisma.articulos.create({
  data: {
    // ... data to create a Articulos
  }
})

Input

Name Type Required
data articulosCreateInput | articulosUncheckedCreateInput Yes

Output

Type: articulos
Required: Yes
List: No

delete

Delete one Articulos

// Delete one Articulos
const Articulos = await prisma.articulos.delete({
  where: {
    // ... filter to delete one Articulos
  }
})

Input

Name Type Required
where articulosWhereUniqueInput Yes

Output

Type: articulos
Required: No
List: No

update

Update one Articulos

// Update one Articulos
const articulos = await prisma.articulos.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data articulosUpdateInput | articulosUncheckedUpdateInput Yes
where articulosWhereUniqueInput Yes

Output

Type: articulos
Required: No
List: No

deleteMany

Delete zero or more Articulos

// Delete a few Articulos
const { count } = await prisma.articulos.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where articulosWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Articulos

const { count } = await prisma.articulos.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data articulosUpdateManyMutationInput | articulosUncheckedUpdateManyInput Yes
where articulosWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Articulos

// Update or create a Articulos
const articulos = await prisma.articulos.upsert({
  create: {
    // ... data to create a Articulos
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Articulos we want to update
  }
})

Input

Name Type Required
where articulosWhereUniqueInput Yes
create articulosCreateInput | articulosUncheckedCreateInput Yes
update articulosUpdateInput | articulosUncheckedUpdateInput Yes

Output

Type: articulos
Required: Yes
List: No

articulos_laboratorio

Fields

Name Type Attributes Required Comment
idArticuloLaboratorio Int
  • @id
  • @default(autoincrement())
Yes -
articulo Int
  • -
Yes -
maquina Int
  • -
Yes -
cantidad Int
  • @default(0)
Yes -
usuario Int?
  • -
No -
fecha_hora DateTime?
  • -
No -
asignado Int?
  • -
No -
estado Int?
  • @default(1)
No -
reparados Int?
  • -
No -

Operations

findUnique

Find zero or one Articulos_laboratorio

// Get one Articulos_laboratorio
const articulos_laboratorio = await prisma.articulos_laboratorio.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where articulos_laboratorioWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Articulos_laboratorio

// Get one Articulos_laboratorio
const articulos_laboratorio = await prisma.articulos_laboratorio.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where articulos_laboratorioWhereInput No
orderBy articulos_laboratorioOrderByWithRelationInput[] | articulos_laboratorioOrderByWithRelationInput No
cursor articulos_laboratorioWhereUniqueInput No
take Int No
skip Int No
distinct Articulos_laboratorioScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Articulos_laboratorio

// Get all Articulos_laboratorio
const Articulos_laboratorio = await prisma.articulos_laboratorio.findMany()
// Get first 10 Articulos_laboratorio
const Articulos_laboratorio = await prisma.articulos_laboratorio.findMany({ take: 10 })

Input

Name Type Required
where articulos_laboratorioWhereInput No
orderBy articulos_laboratorioOrderByWithRelationInput[] | articulos_laboratorioOrderByWithRelationInput No
cursor articulos_laboratorioWhereUniqueInput No
take Int No
skip Int No
distinct Articulos_laboratorioScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Articulos_laboratorio

// Create one Articulos_laboratorio
const Articulos_laboratorio = await prisma.articulos_laboratorio.create({
  data: {
    // ... data to create a Articulos_laboratorio
  }
})

Input

Name Type Required
data articulos_laboratorioCreateInput | articulos_laboratorioUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Articulos_laboratorio

// Delete one Articulos_laboratorio
const Articulos_laboratorio = await prisma.articulos_laboratorio.delete({
  where: {
    // ... filter to delete one Articulos_laboratorio
  }
})

Input

Name Type Required
where articulos_laboratorioWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Articulos_laboratorio

// Update one Articulos_laboratorio
const articulos_laboratorio = await prisma.articulos_laboratorio.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data articulos_laboratorioUpdateInput | articulos_laboratorioUncheckedUpdateInput Yes
where articulos_laboratorioWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Articulos_laboratorio

// Delete a few Articulos_laboratorio
const { count } = await prisma.articulos_laboratorio.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where articulos_laboratorioWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Articulos_laboratorio

const { count } = await prisma.articulos_laboratorio.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data articulos_laboratorioUpdateManyMutationInput | articulos_laboratorioUncheckedUpdateManyInput Yes
where articulos_laboratorioWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Articulos_laboratorio

// Update or create a Articulos_laboratorio
const articulos_laboratorio = await prisma.articulos_laboratorio.upsert({
  create: {
    // ... data to create a Articulos_laboratorio
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Articulos_laboratorio we want to update
  }
})

Input

Name Type Required
where articulos_laboratorioWhereUniqueInput Yes
create articulos_laboratorioCreateInput | articulos_laboratorioUncheckedCreateInput Yes
update articulos_laboratorioUpdateInput | articulos_laboratorioUncheckedUpdateInput Yes

Output

Required: Yes
List: No

articulos_maquinas

Fields

Name Type Attributes Required Comment
idArticuloMaquina Int
  • @id
  • @default(autoincrement())
Yes -
maquina Int
  • -
Yes -
articulo Int
  • -
Yes -
cantidad Int
  • @default(0)
Yes -
usuario Int?
  • -
No -
fecha_hora DateTime?
  • -
No -
estado Int?
  • @default(0)
No -
fecha_salida DateTime?
  • -
No -
usuario_salida Int?
  • -
No -

Operations

findUnique

Find zero or one Articulos_maquinas

// Get one Articulos_maquinas
const articulos_maquinas = await prisma.articulos_maquinas.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where articulos_maquinasWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Articulos_maquinas

// Get one Articulos_maquinas
const articulos_maquinas = await prisma.articulos_maquinas.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where articulos_maquinasWhereInput No
orderBy articulos_maquinasOrderByWithRelationInput[] | articulos_maquinasOrderByWithRelationInput No
cursor articulos_maquinasWhereUniqueInput No
take Int No
skip Int No
distinct Articulos_maquinasScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Articulos_maquinas

// Get all Articulos_maquinas
const Articulos_maquinas = await prisma.articulos_maquinas.findMany()
// Get first 10 Articulos_maquinas
const Articulos_maquinas = await prisma.articulos_maquinas.findMany({ take: 10 })

Input

Name Type Required
where articulos_maquinasWhereInput No
orderBy articulos_maquinasOrderByWithRelationInput[] | articulos_maquinasOrderByWithRelationInput No
cursor articulos_maquinasWhereUniqueInput No
take Int No
skip Int No
distinct Articulos_maquinasScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Articulos_maquinas

// Create one Articulos_maquinas
const Articulos_maquinas = await prisma.articulos_maquinas.create({
  data: {
    // ... data to create a Articulos_maquinas
  }
})

Input

Name Type Required
data articulos_maquinasCreateInput | articulos_maquinasUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Articulos_maquinas

// Delete one Articulos_maquinas
const Articulos_maquinas = await prisma.articulos_maquinas.delete({
  where: {
    // ... filter to delete one Articulos_maquinas
  }
})

Input

Name Type Required
where articulos_maquinasWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Articulos_maquinas

// Update one Articulos_maquinas
const articulos_maquinas = await prisma.articulos_maquinas.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data articulos_maquinasUpdateInput | articulos_maquinasUncheckedUpdateInput Yes
where articulos_maquinasWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Articulos_maquinas

// Delete a few Articulos_maquinas
const { count } = await prisma.articulos_maquinas.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where articulos_maquinasWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Articulos_maquinas

const { count } = await prisma.articulos_maquinas.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data articulos_maquinasUpdateManyMutationInput | articulos_maquinasUncheckedUpdateManyInput Yes
where articulos_maquinasWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Articulos_maquinas

// Update or create a Articulos_maquinas
const articulos_maquinas = await prisma.articulos_maquinas.upsert({
  create: {
    // ... data to create a Articulos_maquinas
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Articulos_maquinas we want to update
  }
})

Input

Name Type Required
where articulos_maquinasWhereUniqueInput Yes
create articulos_maquinasCreateInput | articulos_maquinasUncheckedCreateInput Yes
update articulos_maquinasUpdateInput | articulos_maquinasUncheckedUpdateInput Yes

Output

Required: Yes
List: No

articulos_save

Fields

Name Type Attributes Required Comment
nombre String
  • @id
Yes -
tipo_modelo String?
  • -
No -

Operations

findUnique

Find zero or one Articulos_save

// Get one Articulos_save
const articulos_save = await prisma.articulos_save.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where articulos_saveWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Articulos_save

// Get one Articulos_save
const articulos_save = await prisma.articulos_save.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where articulos_saveWhereInput No
orderBy articulos_saveOrderByWithRelationInput[] | articulos_saveOrderByWithRelationInput No
cursor articulos_saveWhereUniqueInput No
take Int No
skip Int No
distinct Articulos_saveScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Articulos_save

// Get all Articulos_save
const Articulos_save = await prisma.articulos_save.findMany()
// Get first 10 Articulos_save
const Articulos_save = await prisma.articulos_save.findMany({ take: 10 })

Input

Name Type Required
where articulos_saveWhereInput No
orderBy articulos_saveOrderByWithRelationInput[] | articulos_saveOrderByWithRelationInput No
cursor articulos_saveWhereUniqueInput No
take Int No
skip Int No
distinct Articulos_saveScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Articulos_save

// Create one Articulos_save
const Articulos_save = await prisma.articulos_save.create({
  data: {
    // ... data to create a Articulos_save
  }
})

Input

Name Type Required
data articulos_saveCreateInput | articulos_saveUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Articulos_save

// Delete one Articulos_save
const Articulos_save = await prisma.articulos_save.delete({
  where: {
    // ... filter to delete one Articulos_save
  }
})

Input

Name Type Required
where articulos_saveWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Articulos_save

// Update one Articulos_save
const articulos_save = await prisma.articulos_save.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data articulos_saveUpdateInput | articulos_saveUncheckedUpdateInput Yes
where articulos_saveWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Articulos_save

// Delete a few Articulos_save
const { count } = await prisma.articulos_save.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where articulos_saveWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Articulos_save

const { count } = await prisma.articulos_save.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data articulos_saveUpdateManyMutationInput | articulos_saveUncheckedUpdateManyInput Yes
where articulos_saveWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Articulos_save

// Update or create a Articulos_save
const articulos_save = await prisma.articulos_save.upsert({
  create: {
    // ... data to create a Articulos_save
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Articulos_save we want to update
  }
})

Input

Name Type Required
where articulos_saveWhereUniqueInput Yes
create articulos_saveCreateInput | articulos_saveUncheckedCreateInput Yes
update articulos_saveUpdateInput | articulos_saveUncheckedUpdateInput Yes

Output

Required: Yes
List: No

calendariomenu

Fields

Name Type Attributes Required Comment
idCalendarioMenu Int
  • @id
  • @default(autoincrement())
Yes -
legajo String?
  • -
No -
persona_str String?
  • -
No -
title String?
  • -
No -
descripcion String?
  • -
No -
start DateTime?
  • -
No -
color String?
  • -
No -
textColor String?
  • -
No -
end DateTime?
  • -
No -
idMenu Int?
  • -
No -
estado Int?
  • -
No -
f_registro DateTime?
  • -
No -
idMenuBingo Int?
  • -
No -
turno String?
  • -
No -

Operations

findUnique

Find zero or one Calendariomenu

// Get one Calendariomenu
const calendariomenu = await prisma.calendariomenu.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where calendariomenuWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Calendariomenu

// Get one Calendariomenu
const calendariomenu = await prisma.calendariomenu.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where calendariomenuWhereInput No
orderBy calendariomenuOrderByWithRelationInput[] | calendariomenuOrderByWithRelationInput No
cursor calendariomenuWhereUniqueInput No
take Int No
skip Int No
distinct CalendariomenuScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Calendariomenu

// Get all Calendariomenu
const Calendariomenu = await prisma.calendariomenu.findMany()
// Get first 10 Calendariomenu
const Calendariomenu = await prisma.calendariomenu.findMany({ take: 10 })

Input

Name Type Required
where calendariomenuWhereInput No
orderBy calendariomenuOrderByWithRelationInput[] | calendariomenuOrderByWithRelationInput No
cursor calendariomenuWhereUniqueInput No
take Int No
skip Int No
distinct CalendariomenuScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Calendariomenu

// Create one Calendariomenu
const Calendariomenu = await prisma.calendariomenu.create({
  data: {
    // ... data to create a Calendariomenu
  }
})

Input

Name Type Required
data calendariomenuCreateInput | calendariomenuUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Calendariomenu

// Delete one Calendariomenu
const Calendariomenu = await prisma.calendariomenu.delete({
  where: {
    // ... filter to delete one Calendariomenu
  }
})

Input

Name Type Required
where calendariomenuWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Calendariomenu

// Update one Calendariomenu
const calendariomenu = await prisma.calendariomenu.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data calendariomenuUpdateInput | calendariomenuUncheckedUpdateInput Yes
where calendariomenuWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Calendariomenu

// Delete a few Calendariomenu
const { count } = await prisma.calendariomenu.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where calendariomenuWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Calendariomenu

const { count } = await prisma.calendariomenu.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data calendariomenuUpdateManyMutationInput | calendariomenuUncheckedUpdateManyInput Yes
where calendariomenuWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Calendariomenu

// Update or create a Calendariomenu
const calendariomenu = await prisma.calendariomenu.upsert({
  create: {
    // ... data to create a Calendariomenu
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Calendariomenu we want to update
  }
})

Input

Name Type Required
where calendariomenuWhereUniqueInput Yes
create calendariomenuCreateInput | calendariomenuUncheckedCreateInput Yes
update calendariomenuUpdateInput | calendariomenuUncheckedUpdateInput Yes

Output

Required: Yes
List: No

calendariomenu_old

Fields

Name Type Attributes Required Comment
idCalendarioMenu Int
  • @id
  • @default(autoincrement())
Yes -
legajo String?
  • -
No -
title String?
  • -
No -
descripcion String?
  • -
No -
start DateTime?
  • -
No -
color String?
  • -
No -
textColor String?
  • -
No -
end DateTime?
  • -
No -
idMenu Int?
  • -
No -
estado Int?
  • -
No -
f_registro DateTime?
  • -
No -

Operations

findUnique

Find zero or one Calendariomenu_old

// Get one Calendariomenu_old
const calendariomenu_old = await prisma.calendariomenu_old.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where calendariomenu_oldWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Calendariomenu_old

// Get one Calendariomenu_old
const calendariomenu_old = await prisma.calendariomenu_old.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where calendariomenu_oldWhereInput No
orderBy calendariomenu_oldOrderByWithRelationInput[] | calendariomenu_oldOrderByWithRelationInput No
cursor calendariomenu_oldWhereUniqueInput No
take Int No
skip Int No
distinct Calendariomenu_oldScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Calendariomenu_old

// Get all Calendariomenu_old
const Calendariomenu_old = await prisma.calendariomenu_old.findMany()
// Get first 10 Calendariomenu_old
const Calendariomenu_old = await prisma.calendariomenu_old.findMany({ take: 10 })

Input

Name Type Required
where calendariomenu_oldWhereInput No
orderBy calendariomenu_oldOrderByWithRelationInput[] | calendariomenu_oldOrderByWithRelationInput No
cursor calendariomenu_oldWhereUniqueInput No
take Int No
skip Int No
distinct Calendariomenu_oldScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Calendariomenu_old

// Create one Calendariomenu_old
const Calendariomenu_old = await prisma.calendariomenu_old.create({
  data: {
    // ... data to create a Calendariomenu_old
  }
})

Input

Name Type Required
data calendariomenu_oldCreateInput | calendariomenu_oldUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Calendariomenu_old

// Delete one Calendariomenu_old
const Calendariomenu_old = await prisma.calendariomenu_old.delete({
  where: {
    // ... filter to delete one Calendariomenu_old
  }
})

Input

Name Type Required
where calendariomenu_oldWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Calendariomenu_old

// Update one Calendariomenu_old
const calendariomenu_old = await prisma.calendariomenu_old.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data calendariomenu_oldUpdateInput | calendariomenu_oldUncheckedUpdateInput Yes
where calendariomenu_oldWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Calendariomenu_old

// Delete a few Calendariomenu_old
const { count } = await prisma.calendariomenu_old.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where calendariomenu_oldWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Calendariomenu_old

const { count } = await prisma.calendariomenu_old.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data calendariomenu_oldUpdateManyMutationInput | calendariomenu_oldUncheckedUpdateManyInput Yes
where calendariomenu_oldWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Calendariomenu_old

// Update or create a Calendariomenu_old
const calendariomenu_old = await prisma.calendariomenu_old.upsert({
  create: {
    // ... data to create a Calendariomenu_old
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Calendariomenu_old we want to update
  }
})

Input

Name Type Required
where calendariomenu_oldWhereUniqueInput Yes
create calendariomenu_oldCreateInput | calendariomenu_oldUncheckedCreateInput Yes
update calendariomenu_oldUpdateInput | calendariomenu_oldUncheckedUpdateInput Yes

Output

Required: Yes
List: No

capacitacion

Fields

Name Type Attributes Required Comment
idCapacitacion Int
  • @id
  • @default(autoincrement())
Yes -
descripcion String?
  • -
No -
f_inicio DateTime?
  • -
No -
f_fin DateTime?
  • -
No -
estado Int?
  • -
No -
tema String?
  • -
No -
f_registro DateTime?
  • -
No -
usuario Int?
  • -
No -
capacitador String?
  • -
No -
cupo Int?
  • -
No -
modalidad String?
  • -
No -
evaluacion String?
  • -
No -
institucion String?
  • -
No -
tipo String?
  • -
No -
obligatorio String?
  • -
No -
sector String?
  • -
No -

Operations

findUnique

Find zero or one Capacitacion

// Get one Capacitacion
const capacitacion = await prisma.capacitacion.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where capacitacionWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Capacitacion

// Get one Capacitacion
const capacitacion = await prisma.capacitacion.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where capacitacionWhereInput No
orderBy capacitacionOrderByWithRelationInput[] | capacitacionOrderByWithRelationInput No
cursor capacitacionWhereUniqueInput No
take Int No
skip Int No
distinct CapacitacionScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Capacitacion

// Get all Capacitacion
const Capacitacion = await prisma.capacitacion.findMany()
// Get first 10 Capacitacion
const Capacitacion = await prisma.capacitacion.findMany({ take: 10 })

Input

Name Type Required
where capacitacionWhereInput No
orderBy capacitacionOrderByWithRelationInput[] | capacitacionOrderByWithRelationInput No
cursor capacitacionWhereUniqueInput No
take Int No
skip Int No
distinct CapacitacionScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Capacitacion

// Create one Capacitacion
const Capacitacion = await prisma.capacitacion.create({
  data: {
    // ... data to create a Capacitacion
  }
})

Input

Name Type Required
data capacitacionCreateInput | capacitacionUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Capacitacion

// Delete one Capacitacion
const Capacitacion = await prisma.capacitacion.delete({
  where: {
    // ... filter to delete one Capacitacion
  }
})

Input

Name Type Required
where capacitacionWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Capacitacion

// Update one Capacitacion
const capacitacion = await prisma.capacitacion.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data capacitacionUpdateInput | capacitacionUncheckedUpdateInput Yes
where capacitacionWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Capacitacion

// Delete a few Capacitacion
const { count } = await prisma.capacitacion.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where capacitacionWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Capacitacion

const { count } = await prisma.capacitacion.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data capacitacionUpdateManyMutationInput | capacitacionUncheckedUpdateManyInput Yes
where capacitacionWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Capacitacion

// Update or create a Capacitacion
const capacitacion = await prisma.capacitacion.upsert({
  create: {
    // ... data to create a Capacitacion
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Capacitacion we want to update
  }
})

Input

Name Type Required
where capacitacionWhereUniqueInput Yes
create capacitacionCreateInput | capacitacionUncheckedCreateInput Yes
update capacitacionUpdateInput | capacitacionUncheckedUpdateInput Yes

Output

Required: Yes
List: No

capacitacion_persona

Fields

Name Type Attributes Required Comment
idCapacitacionPersona Int
  • @id
  • @default(autoincrement())
Yes -
idCapacitacion Int
  • -
Yes -
idPersona Int
  • -
Yes -
estado Int
  • @default(1)
Yes -
fecha_registro DateTime?
  • -
No -
usuario Int?
  • -
No -

Operations

findUnique

Find zero or one Capacitacion_persona

// Get one Capacitacion_persona
const capacitacion_persona = await prisma.capacitacion_persona.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where capacitacion_personaWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Capacitacion_persona

// Get one Capacitacion_persona
const capacitacion_persona = await prisma.capacitacion_persona.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where capacitacion_personaWhereInput No
orderBy capacitacion_personaOrderByWithRelationInput[] | capacitacion_personaOrderByWithRelationInput No
cursor capacitacion_personaWhereUniqueInput No
take Int No
skip Int No
distinct Capacitacion_personaScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Capacitacion_persona

// Get all Capacitacion_persona
const Capacitacion_persona = await prisma.capacitacion_persona.findMany()
// Get first 10 Capacitacion_persona
const Capacitacion_persona = await prisma.capacitacion_persona.findMany({ take: 10 })

Input

Name Type Required
where capacitacion_personaWhereInput No
orderBy capacitacion_personaOrderByWithRelationInput[] | capacitacion_personaOrderByWithRelationInput No
cursor capacitacion_personaWhereUniqueInput No
take Int No
skip Int No
distinct Capacitacion_personaScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Capacitacion_persona

// Create one Capacitacion_persona
const Capacitacion_persona = await prisma.capacitacion_persona.create({
  data: {
    // ... data to create a Capacitacion_persona
  }
})

Input

Name Type Required
data capacitacion_personaCreateInput | capacitacion_personaUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Capacitacion_persona

// Delete one Capacitacion_persona
const Capacitacion_persona = await prisma.capacitacion_persona.delete({
  where: {
    // ... filter to delete one Capacitacion_persona
  }
})

Input

Name Type Required
where capacitacion_personaWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Capacitacion_persona

// Update one Capacitacion_persona
const capacitacion_persona = await prisma.capacitacion_persona.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data capacitacion_personaUpdateInput | capacitacion_personaUncheckedUpdateInput Yes
where capacitacion_personaWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Capacitacion_persona

// Delete a few Capacitacion_persona
const { count } = await prisma.capacitacion_persona.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where capacitacion_personaWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Capacitacion_persona

const { count } = await prisma.capacitacion_persona.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data capacitacion_personaUpdateManyMutationInput | capacitacion_personaUncheckedUpdateManyInput Yes
where capacitacion_personaWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Capacitacion_persona

// Update or create a Capacitacion_persona
const capacitacion_persona = await prisma.capacitacion_persona.upsert({
  create: {
    // ... data to create a Capacitacion_persona
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Capacitacion_persona we want to update
  }
})

Input

Name Type Required
where capacitacion_personaWhereUniqueInput Yes
create capacitacion_personaCreateInput | capacitacion_personaUncheckedCreateInput Yes
update capacitacion_personaUpdateInput | capacitacion_personaUncheckedUpdateInput Yes

Output

Required: Yes
List: No

codificados

Name Value
@@id
  • gen1
  • atr1
  • atr2
  • atr3

Fields

Name Type Attributes Required Comment
gen1 String
  • -
Yes -
atr1 String
  • -
Yes -
atr2 String
  • -
Yes -
atr3 String
  • -
Yes -
gen1desc String?
  • -
No -
atr1desc String?
  • -
No -
atr2desc String?
  • -
No -
atr3desc String?
  • -
No -

Operations

findUnique

Find zero or one Codificados

// Get one Codificados
const codificados = await prisma.codificados.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where codificadosWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Codificados

// Get one Codificados
const codificados = await prisma.codificados.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where codificadosWhereInput No
orderBy codificadosOrderByWithRelationInput[] | codificadosOrderByWithRelationInput No
cursor codificadosWhereUniqueInput No
take Int No
skip Int No
distinct CodificadosScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Codificados

// Get all Codificados
const Codificados = await prisma.codificados.findMany()
// Get first 10 Codificados
const Codificados = await prisma.codificados.findMany({ take: 10 })

Input

Name Type Required
where codificadosWhereInput No
orderBy codificadosOrderByWithRelationInput[] | codificadosOrderByWithRelationInput No
cursor codificadosWhereUniqueInput No
take Int No
skip Int No
distinct CodificadosScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Codificados

// Create one Codificados
const Codificados = await prisma.codificados.create({
  data: {
    // ... data to create a Codificados
  }
})

Input

Name Type Required
data codificadosCreateInput | codificadosUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Codificados

// Delete one Codificados
const Codificados = await prisma.codificados.delete({
  where: {
    // ... filter to delete one Codificados
  }
})

Input

Name Type Required
where codificadosWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Codificados

// Update one Codificados
const codificados = await prisma.codificados.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data codificadosUpdateInput | codificadosUncheckedUpdateInput Yes
where codificadosWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Codificados

// Delete a few Codificados
const { count } = await prisma.codificados.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where codificadosWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Codificados

const { count } = await prisma.codificados.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data codificadosUpdateManyMutationInput | codificadosUncheckedUpdateManyInput Yes
where codificadosWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Codificados

// Update or create a Codificados
const codificados = await prisma.codificados.upsert({
  create: {
    // ... data to create a Codificados
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Codificados we want to update
  }
})

Input

Name Type Required
where codificadosWhereUniqueInput Yes
create codificadosCreateInput | codificadosUncheckedCreateInput Yes
update codificadosUpdateInput | codificadosUncheckedUpdateInput Yes

Output

Required: Yes
List: No

conexion_bejerman

Fields

Name Type Attributes Required Comment
idConexionBejerman Int
  • @id
  • @default(autoincrement())
Yes -
username String?
  • -
No -
pass String?
  • -
No -
estado Int?
  • -
No -
usuario Int?
  • -
No -

Operations

findUnique

Find zero or one Conexion_bejerman

// Get one Conexion_bejerman
const conexion_bejerman = await prisma.conexion_bejerman.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where conexion_bejermanWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Conexion_bejerman

// Get one Conexion_bejerman
const conexion_bejerman = await prisma.conexion_bejerman.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where conexion_bejermanWhereInput No
orderBy conexion_bejermanOrderByWithRelationInput[] | conexion_bejermanOrderByWithRelationInput No
cursor conexion_bejermanWhereUniqueInput No
take Int No
skip Int No
distinct Conexion_bejermanScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Conexion_bejerman

// Get all Conexion_bejerman
const Conexion_bejerman = await prisma.conexion_bejerman.findMany()
// Get first 10 Conexion_bejerman
const Conexion_bejerman = await prisma.conexion_bejerman.findMany({ take: 10 })

Input

Name Type Required
where conexion_bejermanWhereInput No
orderBy conexion_bejermanOrderByWithRelationInput[] | conexion_bejermanOrderByWithRelationInput No
cursor conexion_bejermanWhereUniqueInput No
take Int No
skip Int No
distinct Conexion_bejermanScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Conexion_bejerman

// Create one Conexion_bejerman
const Conexion_bejerman = await prisma.conexion_bejerman.create({
  data: {
    // ... data to create a Conexion_bejerman
  }
})

Input

Name Type Required
data conexion_bejermanCreateInput | conexion_bejermanUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Conexion_bejerman

// Delete one Conexion_bejerman
const Conexion_bejerman = await prisma.conexion_bejerman.delete({
  where: {
    // ... filter to delete one Conexion_bejerman
  }
})

Input

Name Type Required
where conexion_bejermanWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Conexion_bejerman

// Update one Conexion_bejerman
const conexion_bejerman = await prisma.conexion_bejerman.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data conexion_bejermanUpdateInput | conexion_bejermanUncheckedUpdateInput Yes
where conexion_bejermanWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Conexion_bejerman

// Delete a few Conexion_bejerman
const { count } = await prisma.conexion_bejerman.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where conexion_bejermanWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Conexion_bejerman

const { count } = await prisma.conexion_bejerman.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data conexion_bejermanUpdateManyMutationInput | conexion_bejermanUncheckedUpdateManyInput Yes
where conexion_bejermanWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Conexion_bejerman

// Update or create a Conexion_bejerman
const conexion_bejerman = await prisma.conexion_bejerman.upsert({
  create: {
    // ... data to create a Conexion_bejerman
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Conexion_bejerman we want to update
  }
})

Input

Name Type Required
where conexion_bejermanWhereUniqueInput Yes
create conexion_bejermanCreateInput | conexion_bejermanUncheckedCreateInput Yes
update conexion_bejermanUpdateInput | conexion_bejermanUncheckedUpdateInput Yes

Output

Required: Yes
List: No

consola

Fields

Name Type Attributes Required Comment
idConsola Int
  • @id
  • @default(autoincrement())
Yes -
usuario Int
  • -
Yes -
accion_id Int
  • -
Yes -
accion String
  • -
Yes -
fecha_registro DateTime
  • -
Yes -
modulo Int
  • -
Yes -

Operations

findUnique

Find zero or one Consola

// Get one Consola
const consola = await prisma.consola.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where consolaWhereUniqueInput Yes

Output

Type: consola
Required: No
List: No

findFirst

Find first Consola

// Get one Consola
const consola = await prisma.consola.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where consolaWhereInput No
orderBy consolaOrderByWithRelationInput[] | consolaOrderByWithRelationInput No
cursor consolaWhereUniqueInput No
take Int No
skip Int No
distinct ConsolaScalarFieldEnum[] No

Output

Type: consola
Required: No
List: No

findMany

Find zero or more Consola

// Get all Consola
const Consola = await prisma.consola.findMany()
// Get first 10 Consola
const Consola = await prisma.consola.findMany({ take: 10 })

Input

Name Type Required
where consolaWhereInput No
orderBy consolaOrderByWithRelationInput[] | consolaOrderByWithRelationInput No
cursor consolaWhereUniqueInput No
take Int No
skip Int No
distinct ConsolaScalarFieldEnum[] No

Output

Type: consola
Required: Yes
List: Yes

create

Create one Consola

// Create one Consola
const Consola = await prisma.consola.create({
  data: {
    // ... data to create a Consola
  }
})

Input

Name Type Required
data consolaCreateInput | consolaUncheckedCreateInput Yes

Output

Type: consola
Required: Yes
List: No

delete

Delete one Consola

// Delete one Consola
const Consola = await prisma.consola.delete({
  where: {
    // ... filter to delete one Consola
  }
})

Input

Name Type Required
where consolaWhereUniqueInput Yes

Output

Type: consola
Required: No
List: No

update

Update one Consola

// Update one Consola
const consola = await prisma.consola.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data consolaUpdateInput | consolaUncheckedUpdateInput Yes
where consolaWhereUniqueInput Yes

Output

Type: consola
Required: No
List: No

deleteMany

Delete zero or more Consola

// Delete a few Consola
const { count } = await prisma.consola.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where consolaWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Consola

const { count } = await prisma.consola.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data consolaUpdateManyMutationInput | consolaUncheckedUpdateManyInput Yes
where consolaWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Consola

// Update or create a Consola
const consola = await prisma.consola.upsert({
  create: {
    // ... data to create a Consola
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Consola we want to update
  }
})

Input

Name Type Required
where consolaWhereUniqueInput Yes
create consolaCreateInput | consolaUncheckedCreateInput Yes
update consolaUpdateInput | consolaUncheckedUpdateInput Yes

Output

Type: consola
Required: Yes
List: No

desempeno

Fields

Name Type Attributes Required Comment
idDesempeno Int
  • @id
  • @default(autoincrement())
Yes -
idPersona Int
  • -
Yes -
usuario Int
  • -
Yes -
f_registro DateTime
  • -
Yes -
estado Int?
  • @default(0)
No -
con_tecnico String?
  • -
No -
con_operativo String?
  • -
No -
precencia_prolijidad String?
  • -
No -
puntualidad String?
  • -
No -
cumplimiento_modalidad_trabajo String?
  • -
No -
vocabulario String?
  • -
No -
trabajo_equipo String?
  • -
No -
capacidad_organizacion String?
  • -
No -
vocacion_servicio String?
  • -
No -
capacidad_analisis String?
  • -
No -
obs String?
  • -
No -
cumplimiento_normas String?
  • -
No -

Operations

findUnique

Find zero or one Desempeno

// Get one Desempeno
const desempeno = await prisma.desempeno.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where desempenoWhereUniqueInput Yes

Output

Type: desempeno
Required: No
List: No

findFirst

Find first Desempeno

// Get one Desempeno
const desempeno = await prisma.desempeno.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where desempenoWhereInput No
orderBy desempenoOrderByWithRelationInput[] | desempenoOrderByWithRelationInput No
cursor desempenoWhereUniqueInput No
take Int No
skip Int No
distinct DesempenoScalarFieldEnum[] No

Output

Type: desempeno
Required: No
List: No

findMany

Find zero or more Desempeno

// Get all Desempeno
const Desempeno = await prisma.desempeno.findMany()
// Get first 10 Desempeno
const Desempeno = await prisma.desempeno.findMany({ take: 10 })

Input

Name Type Required
where desempenoWhereInput No
orderBy desempenoOrderByWithRelationInput[] | desempenoOrderByWithRelationInput No
cursor desempenoWhereUniqueInput No
take Int No
skip Int No
distinct DesempenoScalarFieldEnum[] No

Output

Type: desempeno
Required: Yes
List: Yes

create

Create one Desempeno

// Create one Desempeno
const Desempeno = await prisma.desempeno.create({
  data: {
    // ... data to create a Desempeno
  }
})

Input

Name Type Required
data desempenoCreateInput | desempenoUncheckedCreateInput Yes

Output

Type: desempeno
Required: Yes
List: No

delete

Delete one Desempeno

// Delete one Desempeno
const Desempeno = await prisma.desempeno.delete({
  where: {
    // ... filter to delete one Desempeno
  }
})

Input

Name Type Required
where desempenoWhereUniqueInput Yes

Output

Type: desempeno
Required: No
List: No

update

Update one Desempeno

// Update one Desempeno
const desempeno = await prisma.desempeno.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data desempenoUpdateInput | desempenoUncheckedUpdateInput Yes
where desempenoWhereUniqueInput Yes

Output

Type: desempeno
Required: No
List: No

deleteMany

Delete zero or more Desempeno

// Delete a few Desempeno
const { count } = await prisma.desempeno.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where desempenoWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Desempeno

const { count } = await prisma.desempeno.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data desempenoUpdateManyMutationInput | desempenoUncheckedUpdateManyInput Yes
where desempenoWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Desempeno

// Update or create a Desempeno
const desempeno = await prisma.desempeno.upsert({
  create: {
    // ... data to create a Desempeno
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Desempeno we want to update
  }
})

Input

Name Type Required
where desempenoWhereUniqueInput Yes
create desempenoCreateInput | desempenoUncheckedCreateInput Yes
update desempenoUpdateInput | desempenoUncheckedUpdateInput Yes

Output

Type: desempeno
Required: Yes
List: No

desempeno_evol

Fields

Name Type Attributes Required Comment
idDesempenoEvol Int
  • @id
  • @default(autoincrement())
Yes -
idEvaluador Int?
  • -
No -
usuario Int?
  • -
No -
idPersona Int?
  • -
No -
f_desempeno DateTime?
  • -
No -
escucha Int?
  • -
No -
ayuda_cliente Int?
  • -
No -
empatia Int?
  • -
No -
comparte_informacion Int?
  • -
No -
colabora_pares Int?
  • -
No -
trabajo_positivo Int?
  • -
No -
cumple_objetivos Int?
  • -
No -
acepta_sugerencias Int?
  • -
No -
situacion_adversas Int?
  • -
No -
asistencia_puntualidad Int?
  • -
No -
imagen Int?
  • -
No -
limpieza_instalaciones Int?
  • -
No -
limpieza_vestuarios Int?
  • -
No -
minimiza_perdidas_roturas Int?
  • -
No -
objetivos Int?
  • -
No -
cumplimientos_sector Int?
  • -
No -
estado Int?
  • -
No -
conocimientos_sector Int?
  • -
No -
obs String?
  • -
No -

Operations

findUnique

Find zero or one Desempeno_evol

// Get one Desempeno_evol
const desempeno_evol = await prisma.desempeno_evol.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where desempeno_evolWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Desempeno_evol

// Get one Desempeno_evol
const desempeno_evol = await prisma.desempeno_evol.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where desempeno_evolWhereInput No
orderBy desempeno_evolOrderByWithRelationInput[] | desempeno_evolOrderByWithRelationInput No
cursor desempeno_evolWhereUniqueInput No
take Int No
skip Int No
distinct Desempeno_evolScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Desempeno_evol

// Get all Desempeno_evol
const Desempeno_evol = await prisma.desempeno_evol.findMany()
// Get first 10 Desempeno_evol
const Desempeno_evol = await prisma.desempeno_evol.findMany({ take: 10 })

Input

Name Type Required
where desempeno_evolWhereInput No
orderBy desempeno_evolOrderByWithRelationInput[] | desempeno_evolOrderByWithRelationInput No
cursor desempeno_evolWhereUniqueInput No
take Int No
skip Int No
distinct Desempeno_evolScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Desempeno_evol

// Create one Desempeno_evol
const Desempeno_evol = await prisma.desempeno_evol.create({
  data: {
    // ... data to create a Desempeno_evol
  }
})

Input

Name Type Required
data desempeno_evolCreateInput | desempeno_evolUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Desempeno_evol

// Delete one Desempeno_evol
const Desempeno_evol = await prisma.desempeno_evol.delete({
  where: {
    // ... filter to delete one Desempeno_evol
  }
})

Input

Name Type Required
where desempeno_evolWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Desempeno_evol

// Update one Desempeno_evol
const desempeno_evol = await prisma.desempeno_evol.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data desempeno_evolUpdateInput | desempeno_evolUncheckedUpdateInput Yes
where desempeno_evolWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Desempeno_evol

// Delete a few Desempeno_evol
const { count } = await prisma.desempeno_evol.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where desempeno_evolWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Desempeno_evol

const { count } = await prisma.desempeno_evol.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data desempeno_evolUpdateManyMutationInput | desempeno_evolUncheckedUpdateManyInput Yes
where desempeno_evolWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Desempeno_evol

// Update or create a Desempeno_evol
const desempeno_evol = await prisma.desempeno_evol.upsert({
  create: {
    // ... data to create a Desempeno_evol
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Desempeno_evol we want to update
  }
})

Input

Name Type Required
where desempeno_evolWhereUniqueInput Yes
create desempeno_evolCreateInput | desempeno_evolUncheckedCreateInput Yes
update desempeno_evolUpdateInput | desempeno_evolUncheckedUpdateInput Yes

Output

Required: Yes
List: No

documentos

Fields

Name Type Attributes Required Comment
idDocumentos Int
  • @id
  • @default(autoincrement())
Yes -
documento String?
  • -
No -
descripcion String?
  • -
No -
file String?
  • -
No -
path String?
  • -
No -
url String?
  • -
No -
fecha DateTime?
  • -
No -
categoria String?
  • -
No -
tipo String?
  • -
No -
size String?
  • -
No -
sector Int?
  • -
No -
referencia Int?
  • -
No -
funcionalidad String?
  • -
No -
estado String?
  • @default(1)
No -

Operations

findUnique

Find zero or one Documentos

// Get one Documentos
const documentos = await prisma.documentos.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where documentosWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Documentos

// Get one Documentos
const documentos = await prisma.documentos.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where documentosWhereInput No
orderBy documentosOrderByWithRelationInput[] | documentosOrderByWithRelationInput No
cursor documentosWhereUniqueInput No
take Int No
skip Int No
distinct DocumentosScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Documentos

// Get all Documentos
const Documentos = await prisma.documentos.findMany()
// Get first 10 Documentos
const Documentos = await prisma.documentos.findMany({ take: 10 })

Input

Name Type Required
where documentosWhereInput No
orderBy documentosOrderByWithRelationInput[] | documentosOrderByWithRelationInput No
cursor documentosWhereUniqueInput No
take Int No
skip Int No
distinct DocumentosScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Documentos

// Create one Documentos
const Documentos = await prisma.documentos.create({
  data: {
    // ... data to create a Documentos
  }
})

Input

Name Type Required
data documentosCreateInput | documentosUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Documentos

// Delete one Documentos
const Documentos = await prisma.documentos.delete({
  where: {
    // ... filter to delete one Documentos
  }
})

Input

Name Type Required
where documentosWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Documentos

// Update one Documentos
const documentos = await prisma.documentos.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data documentosUpdateInput | documentosUncheckedUpdateInput Yes
where documentosWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Documentos

// Delete a few Documentos
const { count } = await prisma.documentos.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where documentosWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Documentos

const { count } = await prisma.documentos.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data documentosUpdateManyMutationInput | documentosUncheckedUpdateManyInput Yes
where documentosWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Documentos

// Update or create a Documentos
const documentos = await prisma.documentos.upsert({
  create: {
    // ... data to create a Documentos
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Documentos we want to update
  }
})

Input

Name Type Required
where documentosWhereUniqueInput Yes
create documentosCreateInput | documentosUncheckedCreateInput Yes
update documentosUpdateInput | documentosUncheckedUpdateInput Yes

Output

Required: Yes
List: No

estudio

Fields

Name Type Attributes Required Comment
idEstudio Int
  • @id
  • @default(autoincrement())
Yes -
institucion Int?
  • -
No -
titulo String?
  • -
No -
fecha DateTime?
  • -
No -
estado Int?
  • @default(1)
No -
tipo String?
  • -
No -

Operations

findUnique

Find zero or one Estudio

// Get one Estudio
const estudio = await prisma.estudio.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where estudioWhereUniqueInput Yes

Output

Type: estudio
Required: No
List: No

findFirst

Find first Estudio

// Get one Estudio
const estudio = await prisma.estudio.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where estudioWhereInput No
orderBy estudioOrderByWithRelationInput[] | estudioOrderByWithRelationInput No
cursor estudioWhereUniqueInput No
take Int No
skip Int No
distinct EstudioScalarFieldEnum[] No

Output

Type: estudio
Required: No
List: No

findMany

Find zero or more Estudio

// Get all Estudio
const Estudio = await prisma.estudio.findMany()
// Get first 10 Estudio
const Estudio = await prisma.estudio.findMany({ take: 10 })

Input

Name Type Required
where estudioWhereInput No
orderBy estudioOrderByWithRelationInput[] | estudioOrderByWithRelationInput No
cursor estudioWhereUniqueInput No
take Int No
skip Int No
distinct EstudioScalarFieldEnum[] No

Output

Type: estudio
Required: Yes
List: Yes

create

Create one Estudio

// Create one Estudio
const Estudio = await prisma.estudio.create({
  data: {
    // ... data to create a Estudio
  }
})

Input

Name Type Required
data estudioCreateInput | estudioUncheckedCreateInput Yes

Output

Type: estudio
Required: Yes
List: No

delete

Delete one Estudio

// Delete one Estudio
const Estudio = await prisma.estudio.delete({
  where: {
    // ... filter to delete one Estudio
  }
})

Input

Name Type Required
where estudioWhereUniqueInput Yes

Output

Type: estudio
Required: No
List: No

update

Update one Estudio

// Update one Estudio
const estudio = await prisma.estudio.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data estudioUpdateInput | estudioUncheckedUpdateInput Yes
where estudioWhereUniqueInput Yes

Output

Type: estudio
Required: No
List: No

deleteMany

Delete zero or more Estudio

// Delete a few Estudio
const { count } = await prisma.estudio.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where estudioWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Estudio

const { count } = await prisma.estudio.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data estudioUpdateManyMutationInput | estudioUncheckedUpdateManyInput Yes
where estudioWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Estudio

// Update or create a Estudio
const estudio = await prisma.estudio.upsert({
  create: {
    // ... data to create a Estudio
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Estudio we want to update
  }
})

Input

Name Type Required
where estudioWhereUniqueInput Yes
create estudioCreateInput | estudioUncheckedCreateInput Yes
update estudioUpdateInput | estudioUncheckedUpdateInput Yes

Output

Type: estudio
Required: Yes
List: No

estudio_persona

Fields

Name Type Attributes Required Comment
idEstudio_persona Int
  • @id
  • @default(autoincrement())
Yes -
idEstudio Int?
  • -
No -
idPersona Int?
  • -
No -
descripcion String?
  • -
No -
fecha_registro DateTime?
  • -
No -
usuario Int?
  • -
No -
estado Int?
  • @default(1)
No -
estado_str String?
  • -
No -
fecha_inicio DateTime?
  • -
No -
fecha_finalizacion DateTime?
  • -
No -

Operations

findUnique

Find zero or one Estudio_persona

// Get one Estudio_persona
const estudio_persona = await prisma.estudio_persona.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where estudio_personaWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Estudio_persona

// Get one Estudio_persona
const estudio_persona = await prisma.estudio_persona.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where estudio_personaWhereInput No
orderBy estudio_personaOrderByWithRelationInput[] | estudio_personaOrderByWithRelationInput No
cursor estudio_personaWhereUniqueInput No
take Int No
skip Int No
distinct Estudio_personaScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Estudio_persona

// Get all Estudio_persona
const Estudio_persona = await prisma.estudio_persona.findMany()
// Get first 10 Estudio_persona
const Estudio_persona = await prisma.estudio_persona.findMany({ take: 10 })

Input

Name Type Required
where estudio_personaWhereInput No
orderBy estudio_personaOrderByWithRelationInput[] | estudio_personaOrderByWithRelationInput No
cursor estudio_personaWhereUniqueInput No
take Int No
skip Int No
distinct Estudio_personaScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Estudio_persona

// Create one Estudio_persona
const Estudio_persona = await prisma.estudio_persona.create({
  data: {
    // ... data to create a Estudio_persona
  }
})

Input

Name Type Required
data estudio_personaCreateInput | estudio_personaUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Estudio_persona

// Delete one Estudio_persona
const Estudio_persona = await prisma.estudio_persona.delete({
  where: {
    // ... filter to delete one Estudio_persona
  }
})

Input

Name Type Required
where estudio_personaWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Estudio_persona

// Update one Estudio_persona
const estudio_persona = await prisma.estudio_persona.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data estudio_personaUpdateInput | estudio_personaUncheckedUpdateInput Yes
where estudio_personaWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Estudio_persona

// Delete a few Estudio_persona
const { count } = await prisma.estudio_persona.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where estudio_personaWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Estudio_persona

const { count } = await prisma.estudio_persona.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data estudio_personaUpdateManyMutationInput | estudio_personaUncheckedUpdateManyInput Yes
where estudio_personaWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Estudio_persona

// Update or create a Estudio_persona
const estudio_persona = await prisma.estudio_persona.upsert({
  create: {
    // ... data to create a Estudio_persona
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Estudio_persona we want to update
  }
})

Input

Name Type Required
where estudio_personaWhereUniqueInput Yes
create estudio_personaCreateInput | estudio_personaUncheckedCreateInput Yes
update estudio_personaUpdateInput | estudio_personaUncheckedUpdateInput Yes

Output

Required: Yes
List: No

falla_articulo

Fields

Name Type Attributes Required Comment
idFallasArticulos Int
  • @id
  • @default(autoincrement())
Yes -
falla Int
  • -
Yes -
articulo Int
  • -
Yes -

Operations

findUnique

Find zero or one Falla_articulo

// Get one Falla_articulo
const falla_articulo = await prisma.falla_articulo.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where falla_articuloWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Falla_articulo

// Get one Falla_articulo
const falla_articulo = await prisma.falla_articulo.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where falla_articuloWhereInput No
orderBy falla_articuloOrderByWithRelationInput[] | falla_articuloOrderByWithRelationInput No
cursor falla_articuloWhereUniqueInput No
take Int No
skip Int No
distinct Falla_articuloScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Falla_articulo

// Get all Falla_articulo
const Falla_articulo = await prisma.falla_articulo.findMany()
// Get first 10 Falla_articulo
const Falla_articulo = await prisma.falla_articulo.findMany({ take: 10 })

Input

Name Type Required
where falla_articuloWhereInput No
orderBy falla_articuloOrderByWithRelationInput[] | falla_articuloOrderByWithRelationInput No
cursor falla_articuloWhereUniqueInput No
take Int No
skip Int No
distinct Falla_articuloScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Falla_articulo

// Create one Falla_articulo
const Falla_articulo = await prisma.falla_articulo.create({
  data: {
    // ... data to create a Falla_articulo
  }
})

Input

Name Type Required
data falla_articuloCreateInput | falla_articuloUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Falla_articulo

// Delete one Falla_articulo
const Falla_articulo = await prisma.falla_articulo.delete({
  where: {
    // ... filter to delete one Falla_articulo
  }
})

Input

Name Type Required
where falla_articuloWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Falla_articulo

// Update one Falla_articulo
const falla_articulo = await prisma.falla_articulo.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data falla_articuloUpdateInput | falla_articuloUncheckedUpdateInput Yes
where falla_articuloWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Falla_articulo

// Delete a few Falla_articulo
const { count } = await prisma.falla_articulo.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where falla_articuloWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Falla_articulo

const { count } = await prisma.falla_articulo.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data falla_articuloUpdateManyMutationInput | falla_articuloUncheckedUpdateManyInput Yes
where falla_articuloWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Falla_articulo

// Update or create a Falla_articulo
const falla_articulo = await prisma.falla_articulo.upsert({
  create: {
    // ... data to create a Falla_articulo
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Falla_articulo we want to update
  }
})

Input

Name Type Required
where falla_articuloWhereUniqueInput Yes
create falla_articuloCreateInput | falla_articuloUncheckedCreateInput Yes
update falla_articuloUpdateInput | falla_articuloUncheckedUpdateInput Yes

Output

Required: Yes
List: No

fallas

Fields

Name Type Attributes Required Comment
idFallas Int
  • @id
  • @default(autoincrement())
Yes -
descripcion String?
  • -
No -
tipo String?
  • @default(logica)
No -
estado Int?
  • -
No -
gravedad String?
  • -
No -
articulo String?
  • -
No -

Operations

findUnique

Find zero or one Fallas

// Get one Fallas
const fallas = await prisma.fallas.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where fallasWhereUniqueInput Yes

Output

Type: fallas
Required: No
List: No

findFirst

Find first Fallas

// Get one Fallas
const fallas = await prisma.fallas.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where fallasWhereInput No
orderBy fallasOrderByWithRelationInput[] | fallasOrderByWithRelationInput No
cursor fallasWhereUniqueInput No
take Int No
skip Int No
distinct FallasScalarFieldEnum[] No

Output

Type: fallas
Required: No
List: No

findMany

Find zero or more Fallas

// Get all Fallas
const Fallas = await prisma.fallas.findMany()
// Get first 10 Fallas
const Fallas = await prisma.fallas.findMany({ take: 10 })

Input

Name Type Required
where fallasWhereInput No
orderBy fallasOrderByWithRelationInput[] | fallasOrderByWithRelationInput No
cursor fallasWhereUniqueInput No
take Int No
skip Int No
distinct FallasScalarFieldEnum[] No

Output

Type: fallas
Required: Yes
List: Yes

create

Create one Fallas

// Create one Fallas
const Fallas = await prisma.fallas.create({
  data: {
    // ... data to create a Fallas
  }
})

Input

Name Type Required
data fallasCreateInput | fallasUncheckedCreateInput Yes

Output

Type: fallas
Required: Yes
List: No

delete

Delete one Fallas

// Delete one Fallas
const Fallas = await prisma.fallas.delete({
  where: {
    // ... filter to delete one Fallas
  }
})

Input

Name Type Required
where fallasWhereUniqueInput Yes

Output

Type: fallas
Required: No
List: No

update

Update one Fallas

// Update one Fallas
const fallas = await prisma.fallas.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data fallasUpdateInput | fallasUncheckedUpdateInput Yes
where fallasWhereUniqueInput Yes

Output

Type: fallas
Required: No
List: No

deleteMany

Delete zero or more Fallas

// Delete a few Fallas
const { count } = await prisma.fallas.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where fallasWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Fallas

const { count } = await prisma.fallas.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data fallasUpdateManyMutationInput | fallasUncheckedUpdateManyInput Yes
where fallasWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Fallas

// Update or create a Fallas
const fallas = await prisma.fallas.upsert({
  create: {
    // ... data to create a Fallas
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Fallas we want to update
  }
})

Input

Name Type Required
where fallasWhereUniqueInput Yes
create fallasCreateInput | fallasUncheckedCreateInput Yes
update fallasUpdateInput | fallasUncheckedUpdateInput Yes

Output

Type: fallas
Required: Yes
List: No

fallas_maquinas

Fields

Name Type Attributes Required Comment
idFallas_maquinas Int
  • @id
  • @default(autoincrement())
Yes -
maquina Int
  • -
Yes -
falla Int
  • -
Yes -
fecha_registro DateTime
  • -
Yes -
estado Int
  • -
Yes -
usuario Int
  • -
Yes -
ticket Int?
  • @default(0)
No -

Operations

findUnique

Find zero or one Fallas_maquinas

// Get one Fallas_maquinas
const fallas_maquinas = await prisma.fallas_maquinas.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where fallas_maquinasWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Fallas_maquinas

// Get one Fallas_maquinas
const fallas_maquinas = await prisma.fallas_maquinas.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where fallas_maquinasWhereInput No
orderBy fallas_maquinasOrderByWithRelationInput[] | fallas_maquinasOrderByWithRelationInput No
cursor fallas_maquinasWhereUniqueInput No
take Int No
skip Int No
distinct Fallas_maquinasScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Fallas_maquinas

// Get all Fallas_maquinas
const Fallas_maquinas = await prisma.fallas_maquinas.findMany()
// Get first 10 Fallas_maquinas
const Fallas_maquinas = await prisma.fallas_maquinas.findMany({ take: 10 })

Input

Name Type Required
where fallas_maquinasWhereInput No
orderBy fallas_maquinasOrderByWithRelationInput[] | fallas_maquinasOrderByWithRelationInput No
cursor fallas_maquinasWhereUniqueInput No
take Int No
skip Int No
distinct Fallas_maquinasScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Fallas_maquinas

// Create one Fallas_maquinas
const Fallas_maquinas = await prisma.fallas_maquinas.create({
  data: {
    // ... data to create a Fallas_maquinas
  }
})

Input

Name Type Required
data fallas_maquinasCreateInput | fallas_maquinasUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Fallas_maquinas

// Delete one Fallas_maquinas
const Fallas_maquinas = await prisma.fallas_maquinas.delete({
  where: {
    // ... filter to delete one Fallas_maquinas
  }
})

Input

Name Type Required
where fallas_maquinasWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Fallas_maquinas

// Update one Fallas_maquinas
const fallas_maquinas = await prisma.fallas_maquinas.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data fallas_maquinasUpdateInput | fallas_maquinasUncheckedUpdateInput Yes
where fallas_maquinasWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Fallas_maquinas

// Delete a few Fallas_maquinas
const { count } = await prisma.fallas_maquinas.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where fallas_maquinasWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Fallas_maquinas

const { count } = await prisma.fallas_maquinas.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data fallas_maquinasUpdateManyMutationInput | fallas_maquinasUncheckedUpdateManyInput Yes
where fallas_maquinasWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Fallas_maquinas

// Update or create a Fallas_maquinas
const fallas_maquinas = await prisma.fallas_maquinas.upsert({
  create: {
    // ... data to create a Fallas_maquinas
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Fallas_maquinas we want to update
  }
})

Input

Name Type Required
where fallas_maquinasWhereUniqueInput Yes
create fallas_maquinasCreateInput | fallas_maquinasUncheckedCreateInput Yes
update fallas_maquinasUpdateInput | fallas_maquinasUncheckedUpdateInput Yes

Output

Required: Yes
List: No

familiar

Fields

Name Type Attributes Required Comment
idFamiliar Int
  • @id
  • @default(autoincrement())
Yes -
idPersona Int?
  • -
No -
parentezco String?
  • -
No -
documento String?
  • -
No -
estado Int?
  • @default(1)
No -
nombre String?
  • -
No -
tipo_doc String?
  • -
No -
telefono String?
  • @default()
No -

Operations

findUnique

Find zero or one Familiar

// Get one Familiar
const familiar = await prisma.familiar.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where familiarWhereUniqueInput Yes

Output

Type: familiar
Required: No
List: No

findFirst

Find first Familiar

// Get one Familiar
const familiar = await prisma.familiar.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where familiarWhereInput No
orderBy familiarOrderByWithRelationInput[] | familiarOrderByWithRelationInput No
cursor familiarWhereUniqueInput No
take Int No
skip Int No
distinct FamiliarScalarFieldEnum[] No

Output

Type: familiar
Required: No
List: No

findMany

Find zero or more Familiar

// Get all Familiar
const Familiar = await prisma.familiar.findMany()
// Get first 10 Familiar
const Familiar = await prisma.familiar.findMany({ take: 10 })

Input

Name Type Required
where familiarWhereInput No
orderBy familiarOrderByWithRelationInput[] | familiarOrderByWithRelationInput No
cursor familiarWhereUniqueInput No
take Int No
skip Int No
distinct FamiliarScalarFieldEnum[] No

Output

Type: familiar
Required: Yes
List: Yes

create

Create one Familiar

// Create one Familiar
const Familiar = await prisma.familiar.create({
  data: {
    // ... data to create a Familiar
  }
})

Input

Name Type Required
data familiarCreateInput | familiarUncheckedCreateInput Yes

Output

Type: familiar
Required: Yes
List: No

delete

Delete one Familiar

// Delete one Familiar
const Familiar = await prisma.familiar.delete({
  where: {
    // ... filter to delete one Familiar
  }
})

Input

Name Type Required
where familiarWhereUniqueInput Yes

Output

Type: familiar
Required: No
List: No

update

Update one Familiar

// Update one Familiar
const familiar = await prisma.familiar.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data familiarUpdateInput | familiarUncheckedUpdateInput Yes
where familiarWhereUniqueInput Yes

Output

Type: familiar
Required: No
List: No

deleteMany

Delete zero or more Familiar

// Delete a few Familiar
const { count } = await prisma.familiar.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where familiarWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Familiar

const { count } = await prisma.familiar.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data familiarUpdateManyMutationInput | familiarUncheckedUpdateManyInput Yes
where familiarWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Familiar

// Update or create a Familiar
const familiar = await prisma.familiar.upsert({
  create: {
    // ... data to create a Familiar
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Familiar we want to update
  }
})

Input

Name Type Required
where familiarWhereUniqueInput Yes
create familiarCreateInput | familiarUncheckedCreateInput Yes
update familiarUpdateInput | familiarUncheckedUpdateInput Yes

Output

Type: familiar
Required: Yes
List: No

fechalimiteprogramado

Fields

Name Type Attributes Required Comment
idFechaLimiteProgramado Int
  • @id
  • @default(autoincrement())
Yes -
fecha DateTime?
  • -
No -
usuario Int?
  • -
No -
estado Int?
  • -
No -
f_registro DateTime?
  • -
No -

Operations

findUnique

Find zero or one Fechalimiteprogramado

// Get one Fechalimiteprogramado
const fechalimiteprogramado = await prisma.fechalimiteprogramado.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where fechalimiteprogramadoWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Fechalimiteprogramado

// Get one Fechalimiteprogramado
const fechalimiteprogramado = await prisma.fechalimiteprogramado.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where fechalimiteprogramadoWhereInput No
orderBy fechalimiteprogramadoOrderByWithRelationInput[] | fechalimiteprogramadoOrderByWithRelationInput No
cursor fechalimiteprogramadoWhereUniqueInput No
take Int No
skip Int No
distinct FechalimiteprogramadoScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Fechalimiteprogramado

// Get all Fechalimiteprogramado
const Fechalimiteprogramado = await prisma.fechalimiteprogramado.findMany()
// Get first 10 Fechalimiteprogramado
const Fechalimiteprogramado = await prisma.fechalimiteprogramado.findMany({ take: 10 })

Input

Name Type Required
where fechalimiteprogramadoWhereInput No
orderBy fechalimiteprogramadoOrderByWithRelationInput[] | fechalimiteprogramadoOrderByWithRelationInput No
cursor fechalimiteprogramadoWhereUniqueInput No
take Int No
skip Int No
distinct FechalimiteprogramadoScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Fechalimiteprogramado

// Create one Fechalimiteprogramado
const Fechalimiteprogramado = await prisma.fechalimiteprogramado.create({
  data: {
    // ... data to create a Fechalimiteprogramado
  }
})

Input

Name Type Required
data fechalimiteprogramadoCreateInput | fechalimiteprogramadoUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Fechalimiteprogramado

// Delete one Fechalimiteprogramado
const Fechalimiteprogramado = await prisma.fechalimiteprogramado.delete({
  where: {
    // ... filter to delete one Fechalimiteprogramado
  }
})

Input

Name Type Required
where fechalimiteprogramadoWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Fechalimiteprogramado

// Update one Fechalimiteprogramado
const fechalimiteprogramado = await prisma.fechalimiteprogramado.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data fechalimiteprogramadoUpdateInput | fechalimiteprogramadoUncheckedUpdateInput Yes
where fechalimiteprogramadoWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Fechalimiteprogramado

// Delete a few Fechalimiteprogramado
const { count } = await prisma.fechalimiteprogramado.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where fechalimiteprogramadoWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Fechalimiteprogramado

const { count } = await prisma.fechalimiteprogramado.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data fechalimiteprogramadoUpdateManyMutationInput | fechalimiteprogramadoUncheckedUpdateManyInput Yes
where fechalimiteprogramadoWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Fechalimiteprogramado

// Update or create a Fechalimiteprogramado
const fechalimiteprogramado = await prisma.fechalimiteprogramado.upsert({
  create: {
    // ... data to create a Fechalimiteprogramado
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Fechalimiteprogramado we want to update
  }
})

Input

Name Type Required
where fechalimiteprogramadoWhereUniqueInput Yes
create fechalimiteprogramadoCreateInput | fechalimiteprogramadoUncheckedCreateInput Yes
update fechalimiteprogramadoUpdateInput | fechalimiteprogramadoUncheckedUpdateInput Yes

Output

Required: Yes
List: No

institucion

Fields

Name Type Attributes Required Comment
idInstitucion Int
  • @id
  • @default(autoincrement())
Yes -
nombre String?
  • -
No -
direccion String?
  • -
No -
telefono String?
  • -
No -
email String?
  • -
No -
web String?
  • -
No -
estado Int?
  • -
No -

Operations

findUnique

Find zero or one Institucion

// Get one Institucion
const institucion = await prisma.institucion.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where institucionWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Institucion

// Get one Institucion
const institucion = await prisma.institucion.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where institucionWhereInput No
orderBy institucionOrderByWithRelationInput[] | institucionOrderByWithRelationInput No
cursor institucionWhereUniqueInput No
take Int No
skip Int No
distinct InstitucionScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Institucion

// Get all Institucion
const Institucion = await prisma.institucion.findMany()
// Get first 10 Institucion
const Institucion = await prisma.institucion.findMany({ take: 10 })

Input

Name Type Required
where institucionWhereInput No
orderBy institucionOrderByWithRelationInput[] | institucionOrderByWithRelationInput No
cursor institucionWhereUniqueInput No
take Int No
skip Int No
distinct InstitucionScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Institucion

// Create one Institucion
const Institucion = await prisma.institucion.create({
  data: {
    // ... data to create a Institucion
  }
})

Input

Name Type Required
data institucionCreateInput | institucionUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Institucion

// Delete one Institucion
const Institucion = await prisma.institucion.delete({
  where: {
    // ... filter to delete one Institucion
  }
})

Input

Name Type Required
where institucionWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Institucion

// Update one Institucion
const institucion = await prisma.institucion.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data institucionUpdateInput | institucionUncheckedUpdateInput Yes
where institucionWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Institucion

// Delete a few Institucion
const { count } = await prisma.institucion.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where institucionWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Institucion

const { count } = await prisma.institucion.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data institucionUpdateManyMutationInput | institucionUncheckedUpdateManyInput Yes
where institucionWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Institucion

// Update or create a Institucion
const institucion = await prisma.institucion.upsert({
  create: {
    // ... data to create a Institucion
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Institucion we want to update
  }
})

Input

Name Type Required
where institucionWhereUniqueInput Yes
create institucionCreateInput | institucionUncheckedCreateInput Yes
update institucionUpdateInput | institucionUncheckedUpdateInput Yes

Output

Required: Yes
List: No

licencia

Fields

Name Type Attributes Required Comment
idLicencia Int
  • @id
  • @default(autoincrement())
Yes -
titulo String
  • -
Yes -
descripcion String?
  • -
No -
dias Int?
  • -
No -
estado Int?
  • -
No -

Operations

findUnique

Find zero or one Licencia

// Get one Licencia
const licencia = await prisma.licencia.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where licenciaWhereUniqueInput Yes

Output

Type: licencia
Required: No
List: No

findFirst

Find first Licencia

// Get one Licencia
const licencia = await prisma.licencia.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where licenciaWhereInput No
orderBy licenciaOrderByWithRelationInput[] | licenciaOrderByWithRelationInput No
cursor licenciaWhereUniqueInput No
take Int No
skip Int No
distinct LicenciaScalarFieldEnum[] No

Output

Type: licencia
Required: No
List: No

findMany

Find zero or more Licencia

// Get all Licencia
const Licencia = await prisma.licencia.findMany()
// Get first 10 Licencia
const Licencia = await prisma.licencia.findMany({ take: 10 })

Input

Name Type Required
where licenciaWhereInput No
orderBy licenciaOrderByWithRelationInput[] | licenciaOrderByWithRelationInput No
cursor licenciaWhereUniqueInput No
take Int No
skip Int No
distinct LicenciaScalarFieldEnum[] No

Output

Type: licencia
Required: Yes
List: Yes

create

Create one Licencia

// Create one Licencia
const Licencia = await prisma.licencia.create({
  data: {
    // ... data to create a Licencia
  }
})

Input

Name Type Required
data licenciaCreateInput | licenciaUncheckedCreateInput Yes

Output

Type: licencia
Required: Yes
List: No

delete

Delete one Licencia

// Delete one Licencia
const Licencia = await prisma.licencia.delete({
  where: {
    // ... filter to delete one Licencia
  }
})

Input

Name Type Required
where licenciaWhereUniqueInput Yes

Output

Type: licencia
Required: No
List: No

update

Update one Licencia

// Update one Licencia
const licencia = await prisma.licencia.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data licenciaUpdateInput | licenciaUncheckedUpdateInput Yes
where licenciaWhereUniqueInput Yes

Output

Type: licencia
Required: No
List: No

deleteMany

Delete zero or more Licencia

// Delete a few Licencia
const { count } = await prisma.licencia.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where licenciaWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Licencia

const { count } = await prisma.licencia.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data licenciaUpdateManyMutationInput | licenciaUncheckedUpdateManyInput Yes
where licenciaWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Licencia

// Update or create a Licencia
const licencia = await prisma.licencia.upsert({
  create: {
    // ... data to create a Licencia
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Licencia we want to update
  }
})

Input

Name Type Required
where licenciaWhereUniqueInput Yes
create licenciaCreateInput | licenciaUncheckedCreateInput Yes
update licenciaUpdateInput | licenciaUncheckedUpdateInput Yes

Output

Type: licencia
Required: Yes
List: No

licencia_persona

Fields

Name Type Attributes Required Comment
idLicenciaPersona Int
  • @id
  • @default(autoincrement())
Yes -
idLicencia Int
  • -
Yes -
idPersona Int
  • -
Yes -
fecha_registro DateTime
  • -
Yes -
usuario Int
  • -
Yes -
estado Int
  • @default(1)
Yes -
descripcion String?
  • -
No -
documento String
  • -
Yes -
dias Int
  • -
Yes -
f_inicio DateTime
  • -
Yes -
f_fin DateTime
  • -
Yes -

Operations

findUnique

Find zero or one Licencia_persona

// Get one Licencia_persona
const licencia_persona = await prisma.licencia_persona.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where licencia_personaWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Licencia_persona

// Get one Licencia_persona
const licencia_persona = await prisma.licencia_persona.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where licencia_personaWhereInput No
orderBy licencia_personaOrderByWithRelationInput[] | licencia_personaOrderByWithRelationInput No
cursor licencia_personaWhereUniqueInput No
take Int No
skip Int No
distinct Licencia_personaScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Licencia_persona

// Get all Licencia_persona
const Licencia_persona = await prisma.licencia_persona.findMany()
// Get first 10 Licencia_persona
const Licencia_persona = await prisma.licencia_persona.findMany({ take: 10 })

Input

Name Type Required
where licencia_personaWhereInput No
orderBy licencia_personaOrderByWithRelationInput[] | licencia_personaOrderByWithRelationInput No
cursor licencia_personaWhereUniqueInput No
take Int No
skip Int No
distinct Licencia_personaScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Licencia_persona

// Create one Licencia_persona
const Licencia_persona = await prisma.licencia_persona.create({
  data: {
    // ... data to create a Licencia_persona
  }
})

Input

Name Type Required
data licencia_personaCreateInput | licencia_personaUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Licencia_persona

// Delete one Licencia_persona
const Licencia_persona = await prisma.licencia_persona.delete({
  where: {
    // ... filter to delete one Licencia_persona
  }
})

Input

Name Type Required
where licencia_personaWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Licencia_persona

// Update one Licencia_persona
const licencia_persona = await prisma.licencia_persona.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data licencia_personaUpdateInput | licencia_personaUncheckedUpdateInput Yes
where licencia_personaWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Licencia_persona

// Delete a few Licencia_persona
const { count } = await prisma.licencia_persona.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where licencia_personaWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Licencia_persona

const { count } = await prisma.licencia_persona.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data licencia_personaUpdateManyMutationInput | licencia_personaUncheckedUpdateManyInput Yes
where licencia_personaWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Licencia_persona

// Update or create a Licencia_persona
const licencia_persona = await prisma.licencia_persona.upsert({
  create: {
    // ... data to create a Licencia_persona
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Licencia_persona we want to update
  }
})

Input

Name Type Required
where licencia_personaWhereUniqueInput Yes
create licencia_personaCreateInput | licencia_personaUncheckedCreateInput Yes
update licencia_personaUpdateInput | licencia_personaUncheckedUpdateInput Yes

Output

Required: Yes
List: No

maquinas

Fields

Name Type Attributes Required Comment
idMaquina Int
  • @id
  • @default(autoincrement())
Yes -
nro_egm Int?
  • -
No -
fabricante String?
  • -
No -
modelo String?
  • -
No -
p_pago String?
  • -
No -
denom String?
  • -
No -
juego String?
  • -
No -
nro_serie String?
  • -
No -
programa String?
  • -
No -
credito String?
  • -
No -
estado String?
  • -
No -
img String?
  • -
No -
ap_minima String?
  • -
No -
ap_maxima String?
  • -
No -
cant_lineas String?
  • -
No -
tipo_juego String?
  • -
No -

Operations

findUnique

Find zero or one Maquinas

// Get one Maquinas
const maquinas = await prisma.maquinas.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where maquinasWhereUniqueInput Yes

Output

Type: maquinas
Required: No
List: No

findFirst

Find first Maquinas

// Get one Maquinas
const maquinas = await prisma.maquinas.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where maquinasWhereInput No
orderBy maquinasOrderByWithRelationInput[] | maquinasOrderByWithRelationInput No
cursor maquinasWhereUniqueInput No
take Int No
skip Int No
distinct MaquinasScalarFieldEnum[] No

Output

Type: maquinas
Required: No
List: No

findMany

Find zero or more Maquinas

// Get all Maquinas
const Maquinas = await prisma.maquinas.findMany()
// Get first 10 Maquinas
const Maquinas = await prisma.maquinas.findMany({ take: 10 })

Input

Name Type Required
where maquinasWhereInput No
orderBy maquinasOrderByWithRelationInput[] | maquinasOrderByWithRelationInput No
cursor maquinasWhereUniqueInput No
take Int No
skip Int No
distinct MaquinasScalarFieldEnum[] No

Output

Type: maquinas
Required: Yes
List: Yes

create

Create one Maquinas

// Create one Maquinas
const Maquinas = await prisma.maquinas.create({
  data: {
    // ... data to create a Maquinas
  }
})

Input

Name Type Required
data maquinasCreateInput | maquinasUncheckedCreateInput Yes

Output

Type: maquinas
Required: Yes
List: No

delete

Delete one Maquinas

// Delete one Maquinas
const Maquinas = await prisma.maquinas.delete({
  where: {
    // ... filter to delete one Maquinas
  }
})

Input

Name Type Required
where maquinasWhereUniqueInput Yes

Output

Type: maquinas
Required: No
List: No

update

Update one Maquinas

// Update one Maquinas
const maquinas = await prisma.maquinas.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data maquinasUpdateInput | maquinasUncheckedUpdateInput Yes
where maquinasWhereUniqueInput Yes

Output

Type: maquinas
Required: No
List: No

deleteMany

Delete zero or more Maquinas

// Delete a few Maquinas
const { count } = await prisma.maquinas.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where maquinasWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Maquinas

const { count } = await prisma.maquinas.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data maquinasUpdateManyMutationInput | maquinasUncheckedUpdateManyInput Yes
where maquinasWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Maquinas

// Update or create a Maquinas
const maquinas = await prisma.maquinas.upsert({
  create: {
    // ... data to create a Maquinas
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Maquinas we want to update
  }
})

Input

Name Type Required
where maquinasWhereUniqueInput Yes
create maquinasCreateInput | maquinasUncheckedCreateInput Yes
update maquinasUpdateInput | maquinasUncheckedUpdateInput Yes

Output

Type: maquinas
Required: Yes
List: No

maquinas_piezas

Fields

Name Type Attributes Required Comment
nro_egm Int
  • @id
Yes -
modelo String
  • -
Yes -
tipo_aceptbill String
  • -
Yes -
tipo_impre String
  • -
Yes -
tipo_moni String
  • -
Yes -

Operations

findUnique

Find zero or one Maquinas_piezas

// Get one Maquinas_piezas
const maquinas_piezas = await prisma.maquinas_piezas.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where maquinas_piezasWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Maquinas_piezas

// Get one Maquinas_piezas
const maquinas_piezas = await prisma.maquinas_piezas.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where maquinas_piezasWhereInput No
orderBy maquinas_piezasOrderByWithRelationInput[] | maquinas_piezasOrderByWithRelationInput No
cursor maquinas_piezasWhereUniqueInput No
take Int No
skip Int No
distinct Maquinas_piezasScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Maquinas_piezas

// Get all Maquinas_piezas
const Maquinas_piezas = await prisma.maquinas_piezas.findMany()
// Get first 10 Maquinas_piezas
const Maquinas_piezas = await prisma.maquinas_piezas.findMany({ take: 10 })

Input

Name Type Required
where maquinas_piezasWhereInput No
orderBy maquinas_piezasOrderByWithRelationInput[] | maquinas_piezasOrderByWithRelationInput No
cursor maquinas_piezasWhereUniqueInput No
take Int No
skip Int No
distinct Maquinas_piezasScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Maquinas_piezas

// Create one Maquinas_piezas
const Maquinas_piezas = await prisma.maquinas_piezas.create({
  data: {
    // ... data to create a Maquinas_piezas
  }
})

Input

Name Type Required
data maquinas_piezasCreateInput | maquinas_piezasUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Maquinas_piezas

// Delete one Maquinas_piezas
const Maquinas_piezas = await prisma.maquinas_piezas.delete({
  where: {
    // ... filter to delete one Maquinas_piezas
  }
})

Input

Name Type Required
where maquinas_piezasWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Maquinas_piezas

// Update one Maquinas_piezas
const maquinas_piezas = await prisma.maquinas_piezas.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data maquinas_piezasUpdateInput | maquinas_piezasUncheckedUpdateInput Yes
where maquinas_piezasWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Maquinas_piezas

// Delete a few Maquinas_piezas
const { count } = await prisma.maquinas_piezas.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where maquinas_piezasWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Maquinas_piezas

const { count } = await prisma.maquinas_piezas.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data maquinas_piezasUpdateManyMutationInput | maquinas_piezasUncheckedUpdateManyInput Yes
where maquinas_piezasWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Maquinas_piezas

// Update or create a Maquinas_piezas
const maquinas_piezas = await prisma.maquinas_piezas.upsert({
  create: {
    // ... data to create a Maquinas_piezas
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Maquinas_piezas we want to update
  }
})

Input

Name Type Required
where maquinas_piezasWhereUniqueInput Yes
create maquinas_piezasCreateInput | maquinas_piezasUncheckedCreateInput Yes
update maquinas_piezasUpdateInput | maquinas_piezasUncheckedUpdateInput Yes

Output

Required: Yes
List: No

menu_personal

Fields

Name Type Attributes Required Comment
idMenuPersonal Int
  • @id
  • @default(autoincrement())
Yes -
estado Int?
  • @default(1)
No -
f_proceso DateTime?
  • -
No -
descripcion String?
  • -
No -
usuario_carga Int?
  • -
No -
fecha_menu DateTime?
  • -
No -
tipo_menu String?
  • -
No -
valor Decimal?
  • -
No -

Operations

findUnique

Find zero or one Menu_personal

// Get one Menu_personal
const menu_personal = await prisma.menu_personal.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where menu_personalWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Menu_personal

// Get one Menu_personal
const menu_personal = await prisma.menu_personal.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where menu_personalWhereInput No
orderBy menu_personalOrderByWithRelationInput[] | menu_personalOrderByWithRelationInput No
cursor menu_personalWhereUniqueInput No
take Int No
skip Int No
distinct Menu_personalScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Menu_personal

// Get all Menu_personal
const Menu_personal = await prisma.menu_personal.findMany()
// Get first 10 Menu_personal
const Menu_personal = await prisma.menu_personal.findMany({ take: 10 })

Input

Name Type Required
where menu_personalWhereInput No
orderBy menu_personalOrderByWithRelationInput[] | menu_personalOrderByWithRelationInput No
cursor menu_personalWhereUniqueInput No
take Int No
skip Int No
distinct Menu_personalScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Menu_personal

// Create one Menu_personal
const Menu_personal = await prisma.menu_personal.create({
  data: {
    // ... data to create a Menu_personal
  }
})

Input

Name Type Required
data menu_personalCreateInput | menu_personalUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Menu_personal

// Delete one Menu_personal
const Menu_personal = await prisma.menu_personal.delete({
  where: {
    // ... filter to delete one Menu_personal
  }
})

Input

Name Type Required
where menu_personalWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Menu_personal

// Update one Menu_personal
const menu_personal = await prisma.menu_personal.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data menu_personalUpdateInput | menu_personalUncheckedUpdateInput Yes
where menu_personalWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Menu_personal

// Delete a few Menu_personal
const { count } = await prisma.menu_personal.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where menu_personalWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Menu_personal

const { count } = await prisma.menu_personal.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data menu_personalUpdateManyMutationInput | menu_personalUncheckedUpdateManyInput Yes
where menu_personalWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Menu_personal

// Update or create a Menu_personal
const menu_personal = await prisma.menu_personal.upsert({
  create: {
    // ... data to create a Menu_personal
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Menu_personal we want to update
  }
})

Input

Name Type Required
where menu_personalWhereUniqueInput Yes
create menu_personalCreateInput | menu_personalUncheckedCreateInput Yes
update menu_personalUpdateInput | menu_personalUncheckedUpdateInput Yes

Output

Required: Yes
List: No

menu_personal_20190904

Fields

Name Type Attributes Required Comment
idMenuPersonal Int
  • @id
  • @default(autoincrement())
Yes -
estado Int?
  • @default(1)
No -
f_proceso DateTime?
  • -
No -
descripcion String?
  • -
No -
usuario_carga Int?
  • -
No -
fecha_menu DateTime?
  • -
No -

Operations

findUnique

Find zero or one Menu_personal_20190904

// Get one Menu_personal_20190904
const menu_personal_20190904 = await prisma.menu_personal_20190904.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where menu_personal_20190904WhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Menu_personal_20190904

// Get one Menu_personal_20190904
const menu_personal_20190904 = await prisma.menu_personal_20190904.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where menu_personal_20190904WhereInput No
orderBy menu_personal_20190904OrderByWithRelationInput[] | menu_personal_20190904OrderByWithRelationInput No
cursor menu_personal_20190904WhereUniqueInput No
take Int No
skip Int No
distinct Menu_personal_20190904ScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Menu_personal_20190904

// Get all Menu_personal_20190904
const Menu_personal_20190904 = await prisma.menu_personal_20190904.findMany()
// Get first 10 Menu_personal_20190904
const Menu_personal_20190904 = await prisma.menu_personal_20190904.findMany({ take: 10 })

Input

Name Type Required
where menu_personal_20190904WhereInput No
orderBy menu_personal_20190904OrderByWithRelationInput[] | menu_personal_20190904OrderByWithRelationInput No
cursor menu_personal_20190904WhereUniqueInput No
take Int No
skip Int No
distinct Menu_personal_20190904ScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Menu_personal_20190904

// Create one Menu_personal_20190904
const Menu_personal_20190904 = await prisma.menu_personal_20190904.create({
  data: {
    // ... data to create a Menu_personal_20190904
  }
})

Input

Name Type Required
data menu_personal_20190904CreateInput | menu_personal_20190904UncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Menu_personal_20190904

// Delete one Menu_personal_20190904
const Menu_personal_20190904 = await prisma.menu_personal_20190904.delete({
  where: {
    // ... filter to delete one Menu_personal_20190904
  }
})

Input

Name Type Required
where menu_personal_20190904WhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Menu_personal_20190904

// Update one Menu_personal_20190904
const menu_personal_20190904 = await prisma.menu_personal_20190904.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data menu_personal_20190904UpdateInput | menu_personal_20190904UncheckedUpdateInput Yes
where menu_personal_20190904WhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Menu_personal_20190904

// Delete a few Menu_personal_20190904
const { count } = await prisma.menu_personal_20190904.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where menu_personal_20190904WhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Menu_personal_20190904

const { count } = await prisma.menu_personal_20190904.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data menu_personal_20190904UpdateManyMutationInput | menu_personal_20190904UncheckedUpdateManyInput Yes
where menu_personal_20190904WhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Menu_personal_20190904

// Update or create a Menu_personal_20190904
const menu_personal_20190904 = await prisma.menu_personal_20190904.upsert({
  create: {
    // ... data to create a Menu_personal_20190904
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Menu_personal_20190904 we want to update
  }
})

Input

Name Type Required
where menu_personal_20190904WhereUniqueInput Yes
create menu_personal_20190904CreateInput | menu_personal_20190904UncheckedCreateInput Yes
update menu_personal_20190904UpdateInput | menu_personal_20190904UncheckedUpdateInput Yes

Output

Required: Yes
List: No

menu_personal_old

Fields

Name Type Attributes Required Comment
idMenuPersonal Int
  • @id
  • @default(autoincrement())
Yes -
estado Int?
  • @default(1)
No -
f_proceso DateTime?
  • -
No -
descripcion String?
  • -
No -
usuario_carga Int?
  • -
No -
fecha_menu DateTime?
  • -
No -

Operations

findUnique

Find zero or one Menu_personal_old

// Get one Menu_personal_old
const menu_personal_old = await prisma.menu_personal_old.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where menu_personal_oldWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Menu_personal_old

// Get one Menu_personal_old
const menu_personal_old = await prisma.menu_personal_old.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where menu_personal_oldWhereInput No
orderBy menu_personal_oldOrderByWithRelationInput[] | menu_personal_oldOrderByWithRelationInput No
cursor menu_personal_oldWhereUniqueInput No
take Int No
skip Int No
distinct Menu_personal_oldScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Menu_personal_old

// Get all Menu_personal_old
const Menu_personal_old = await prisma.menu_personal_old.findMany()
// Get first 10 Menu_personal_old
const Menu_personal_old = await prisma.menu_personal_old.findMany({ take: 10 })

Input

Name Type Required
where menu_personal_oldWhereInput No
orderBy menu_personal_oldOrderByWithRelationInput[] | menu_personal_oldOrderByWithRelationInput No
cursor menu_personal_oldWhereUniqueInput No
take Int No
skip Int No
distinct Menu_personal_oldScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Menu_personal_old

// Create one Menu_personal_old
const Menu_personal_old = await prisma.menu_personal_old.create({
  data: {
    // ... data to create a Menu_personal_old
  }
})

Input

Name Type Required
data menu_personal_oldCreateInput | menu_personal_oldUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Menu_personal_old

// Delete one Menu_personal_old
const Menu_personal_old = await prisma.menu_personal_old.delete({
  where: {
    // ... filter to delete one Menu_personal_old
  }
})

Input

Name Type Required
where menu_personal_oldWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Menu_personal_old

// Update one Menu_personal_old
const menu_personal_old = await prisma.menu_personal_old.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data menu_personal_oldUpdateInput | menu_personal_oldUncheckedUpdateInput Yes
where menu_personal_oldWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Menu_personal_old

// Delete a few Menu_personal_old
const { count } = await prisma.menu_personal_old.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where menu_personal_oldWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Menu_personal_old

const { count } = await prisma.menu_personal_old.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data menu_personal_oldUpdateManyMutationInput | menu_personal_oldUncheckedUpdateManyInput Yes
where menu_personal_oldWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Menu_personal_old

// Update or create a Menu_personal_old
const menu_personal_old = await prisma.menu_personal_old.upsert({
  create: {
    // ... data to create a Menu_personal_old
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Menu_personal_old we want to update
  }
})

Input

Name Type Required
where menu_personal_oldWhereUniqueInput Yes
create menu_personal_oldCreateInput | menu_personal_oldUncheckedCreateInput Yes
update menu_personal_oldUpdateInput | menu_personal_oldUncheckedUpdateInput Yes

Output

Required: Yes
List: No

movimiento_articulo

Fields

Name Type Attributes Required Comment
idMovimiento_articulo Int
  • @id
  • @default(autoincrement())
Yes -
articulo Int
  • -
Yes -
cantidad Int
  • -
Yes -
fecha_hora DateTime
  • -
Yes -
movimiento String
  • -
Yes -
usuario Int
  • -
Yes -
locacion String?
  • @default()
No -

Operations

findUnique

Find zero or one Movimiento_articulo

// Get one Movimiento_articulo
const movimiento_articulo = await prisma.movimiento_articulo.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where movimiento_articuloWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Movimiento_articulo

// Get one Movimiento_articulo
const movimiento_articulo = await prisma.movimiento_articulo.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where movimiento_articuloWhereInput No
orderBy movimiento_articuloOrderByWithRelationInput[] | movimiento_articuloOrderByWithRelationInput No
cursor movimiento_articuloWhereUniqueInput No
take Int No
skip Int No
distinct Movimiento_articuloScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Movimiento_articulo

// Get all Movimiento_articulo
const Movimiento_articulo = await prisma.movimiento_articulo.findMany()
// Get first 10 Movimiento_articulo
const Movimiento_articulo = await prisma.movimiento_articulo.findMany({ take: 10 })

Input

Name Type Required
where movimiento_articuloWhereInput No
orderBy movimiento_articuloOrderByWithRelationInput[] | movimiento_articuloOrderByWithRelationInput No
cursor movimiento_articuloWhereUniqueInput No
take Int No
skip Int No
distinct Movimiento_articuloScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Movimiento_articulo

// Create one Movimiento_articulo
const Movimiento_articulo = await prisma.movimiento_articulo.create({
  data: {
    // ... data to create a Movimiento_articulo
  }
})

Input

Name Type Required
data movimiento_articuloCreateInput | movimiento_articuloUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Movimiento_articulo

// Delete one Movimiento_articulo
const Movimiento_articulo = await prisma.movimiento_articulo.delete({
  where: {
    // ... filter to delete one Movimiento_articulo
  }
})

Input

Name Type Required
where movimiento_articuloWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Movimiento_articulo

// Update one Movimiento_articulo
const movimiento_articulo = await prisma.movimiento_articulo.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data movimiento_articuloUpdateInput | movimiento_articuloUncheckedUpdateInput Yes
where movimiento_articuloWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Movimiento_articulo

// Delete a few Movimiento_articulo
const { count } = await prisma.movimiento_articulo.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where movimiento_articuloWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Movimiento_articulo

const { count } = await prisma.movimiento_articulo.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data movimiento_articuloUpdateManyMutationInput | movimiento_articuloUncheckedUpdateManyInput Yes
where movimiento_articuloWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Movimiento_articulo

// Update or create a Movimiento_articulo
const movimiento_articulo = await prisma.movimiento_articulo.upsert({
  create: {
    // ... data to create a Movimiento_articulo
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Movimiento_articulo we want to update
  }
})

Input

Name Type Required
where movimiento_articuloWhereUniqueInput Yes
create movimiento_articuloCreateInput | movimiento_articuloUncheckedCreateInput Yes
update movimiento_articuloUpdateInput | movimiento_articuloUncheckedUpdateInput Yes

Output

Required: Yes
List: No

novedades

Fields

Name Type Attributes Required Comment
idNovedades Int
  • @id
  • @default(autoincrement())
Yes -
texto String?
  • -
No -
referencia Int
  • -
Yes -
estado Int
  • -
Yes -
f_proceso DateTime
  • -
Yes -
usuario Int
  • -
Yes -
tipo String
  • -
Yes -

Operations

findUnique

Find zero or one Novedades

// Get one Novedades
const novedades = await prisma.novedades.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where novedadesWhereUniqueInput Yes

Output

Type: novedades
Required: No
List: No

findFirst

Find first Novedades

// Get one Novedades
const novedades = await prisma.novedades.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where novedadesWhereInput No
orderBy novedadesOrderByWithRelationInput[] | novedadesOrderByWithRelationInput No
cursor novedadesWhereUniqueInput No
take Int No
skip Int No
distinct NovedadesScalarFieldEnum[] No

Output

Type: novedades
Required: No
List: No

findMany

Find zero or more Novedades

// Get all Novedades
const Novedades = await prisma.novedades.findMany()
// Get first 10 Novedades
const Novedades = await prisma.novedades.findMany({ take: 10 })

Input

Name Type Required
where novedadesWhereInput No
orderBy novedadesOrderByWithRelationInput[] | novedadesOrderByWithRelationInput No
cursor novedadesWhereUniqueInput No
take Int No
skip Int No
distinct NovedadesScalarFieldEnum[] No

Output

Type: novedades
Required: Yes
List: Yes

create

Create one Novedades

// Create one Novedades
const Novedades = await prisma.novedades.create({
  data: {
    // ... data to create a Novedades
  }
})

Input

Name Type Required
data novedadesCreateInput | novedadesUncheckedCreateInput Yes

Output

Type: novedades
Required: Yes
List: No

delete

Delete one Novedades

// Delete one Novedades
const Novedades = await prisma.novedades.delete({
  where: {
    // ... filter to delete one Novedades
  }
})

Input

Name Type Required
where novedadesWhereUniqueInput Yes

Output

Type: novedades
Required: No
List: No

update

Update one Novedades

// Update one Novedades
const novedades = await prisma.novedades.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data novedadesUpdateInput | novedadesUncheckedUpdateInput Yes
where novedadesWhereUniqueInput Yes

Output

Type: novedades
Required: No
List: No

deleteMany

Delete zero or more Novedades

// Delete a few Novedades
const { count } = await prisma.novedades.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where novedadesWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Novedades

const { count } = await prisma.novedades.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data novedadesUpdateManyMutationInput | novedadesUncheckedUpdateManyInput Yes
where novedadesWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Novedades

// Update or create a Novedades
const novedades = await prisma.novedades.upsert({
  create: {
    // ... data to create a Novedades
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Novedades we want to update
  }
})

Input

Name Type Required
where novedadesWhereUniqueInput Yes
create novedadesCreateInput | novedadesUncheckedCreateInput Yes
update novedadesUpdateInput | novedadesUncheckedUpdateInput Yes

Output

Type: novedades
Required: Yes
List: No

numerico

Fields

Name Type Attributes Required Comment
numericocol Int
  • @id
Yes -

Operations

findUnique

Find zero or one Numerico

// Get one Numerico
const numerico = await prisma.numerico.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where numericoWhereUniqueInput Yes

Output

Type: numerico
Required: No
List: No

findFirst

Find first Numerico

// Get one Numerico
const numerico = await prisma.numerico.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where numericoWhereInput No
orderBy numericoOrderByWithRelationInput[] | numericoOrderByWithRelationInput No
cursor numericoWhereUniqueInput No
take Int No
skip Int No
distinct NumericoScalarFieldEnum[] No

Output

Type: numerico
Required: No
List: No

findMany

Find zero or more Numerico

// Get all Numerico
const Numerico = await prisma.numerico.findMany()
// Get first 10 Numerico
const Numerico = await prisma.numerico.findMany({ take: 10 })

Input

Name Type Required
where numericoWhereInput No
orderBy numericoOrderByWithRelationInput[] | numericoOrderByWithRelationInput No
cursor numericoWhereUniqueInput No
take Int No
skip Int No
distinct NumericoScalarFieldEnum[] No

Output

Type: numerico
Required: Yes
List: Yes

create

Create one Numerico

// Create one Numerico
const Numerico = await prisma.numerico.create({
  data: {
    // ... data to create a Numerico
  }
})

Input

Name Type Required
data numericoCreateInput | numericoUncheckedCreateInput Yes

Output

Type: numerico
Required: Yes
List: No

delete

Delete one Numerico

// Delete one Numerico
const Numerico = await prisma.numerico.delete({
  where: {
    // ... filter to delete one Numerico
  }
})

Input

Name Type Required
where numericoWhereUniqueInput Yes

Output

Type: numerico
Required: No
List: No

update

Update one Numerico

// Update one Numerico
const numerico = await prisma.numerico.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data numericoUpdateInput | numericoUncheckedUpdateInput Yes
where numericoWhereUniqueInput Yes

Output

Type: numerico
Required: No
List: No

deleteMany

Delete zero or more Numerico

// Delete a few Numerico
const { count } = await prisma.numerico.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where numericoWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Numerico

const { count } = await prisma.numerico.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data numericoUpdateManyMutationInput | numericoUncheckedUpdateManyInput Yes
where numericoWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Numerico

// Update or create a Numerico
const numerico = await prisma.numerico.upsert({
  create: {
    // ... data to create a Numerico
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Numerico we want to update
  }
})

Input

Name Type Required
where numericoWhereUniqueInput Yes
create numericoCreateInput | numericoUncheckedCreateInput Yes
update numericoUpdateInput | numericoUncheckedUpdateInput Yes

Output

Type: numerico
Required: Yes
List: No

parametro_menu

Fields

Name Type Attributes Required Comment
idParametroMenu Int
  • @id
  • @default(autoincrement())
Yes -
dia String
  • -
Yes -
tiempo String
  • -
Yes -
cantidad Int
  • -
Yes -
f_proceso DateTime?
  • -
No -
usuario_carga Int?
  • -
No -
estado Int?
  • -
No -

Operations

findUnique

Find zero or one Parametro_menu

// Get one Parametro_menu
const parametro_menu = await prisma.parametro_menu.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where parametro_menuWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Parametro_menu

// Get one Parametro_menu
const parametro_menu = await prisma.parametro_menu.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where parametro_menuWhereInput No
orderBy parametro_menuOrderByWithRelationInput[] | parametro_menuOrderByWithRelationInput No
cursor parametro_menuWhereUniqueInput No
take Int No
skip Int No
distinct Parametro_menuScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Parametro_menu

// Get all Parametro_menu
const Parametro_menu = await prisma.parametro_menu.findMany()
// Get first 10 Parametro_menu
const Parametro_menu = await prisma.parametro_menu.findMany({ take: 10 })

Input

Name Type Required
where parametro_menuWhereInput No
orderBy parametro_menuOrderByWithRelationInput[] | parametro_menuOrderByWithRelationInput No
cursor parametro_menuWhereUniqueInput No
take Int No
skip Int No
distinct Parametro_menuScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Parametro_menu

// Create one Parametro_menu
const Parametro_menu = await prisma.parametro_menu.create({
  data: {
    // ... data to create a Parametro_menu
  }
})

Input

Name Type Required
data parametro_menuCreateInput | parametro_menuUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Parametro_menu

// Delete one Parametro_menu
const Parametro_menu = await prisma.parametro_menu.delete({
  where: {
    // ... filter to delete one Parametro_menu
  }
})

Input

Name Type Required
where parametro_menuWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Parametro_menu

// Update one Parametro_menu
const parametro_menu = await prisma.parametro_menu.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data parametro_menuUpdateInput | parametro_menuUncheckedUpdateInput Yes
where parametro_menuWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Parametro_menu

// Delete a few Parametro_menu
const { count } = await prisma.parametro_menu.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where parametro_menuWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Parametro_menu

const { count } = await prisma.parametro_menu.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data parametro_menuUpdateManyMutationInput | parametro_menuUncheckedUpdateManyInput Yes
where parametro_menuWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Parametro_menu

// Update or create a Parametro_menu
const parametro_menu = await prisma.parametro_menu.upsert({
  create: {
    // ... data to create a Parametro_menu
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Parametro_menu we want to update
  }
})

Input

Name Type Required
where parametro_menuWhereUniqueInput Yes
create parametro_menuCreateInput | parametro_menuUncheckedCreateInput Yes
update parametro_menuUpdateInput | parametro_menuUncheckedUpdateInput Yes

Output

Required: Yes
List: No

pedido

Fields

Name Type Attributes Required Comment
idPedido Int
  • @id
  • @default(autoincrement())
Yes -
idCalendarioMenu Int?
  • -
No -
idMenu Int?
  • -
No -
usuario Int?
  • -
No -
f_registro DateTime?
  • -
No -
f_listo DateTime?
  • -
No -
estado Int?
  • -
No -
persona Int?
  • -
No -
legajo String?
  • -
No -
persona_str String?
  • -
No -
descripcion String?
  • -
No -
importe_externo Decimal?
  • -
No -
importe_interno Decimal?
  • -
No -
idMenuBingo Int?
  • -
No -
turno String?
  • -
No -

Operations

findUnique

Find zero or one Pedido

// Get one Pedido
const pedido = await prisma.pedido.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where pedidoWhereUniqueInput Yes

Output

Type: pedido
Required: No
List: No

findFirst

Find first Pedido

// Get one Pedido
const pedido = await prisma.pedido.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where pedidoWhereInput No
orderBy pedidoOrderByWithRelationInput[] | pedidoOrderByWithRelationInput No
cursor pedidoWhereUniqueInput No
take Int No
skip Int No
distinct PedidoScalarFieldEnum[] No

Output

Type: pedido
Required: No
List: No

findMany

Find zero or more Pedido

// Get all Pedido
const Pedido = await prisma.pedido.findMany()
// Get first 10 Pedido
const Pedido = await prisma.pedido.findMany({ take: 10 })

Input

Name Type Required
where pedidoWhereInput No
orderBy pedidoOrderByWithRelationInput[] | pedidoOrderByWithRelationInput No
cursor pedidoWhereUniqueInput No
take Int No
skip Int No
distinct PedidoScalarFieldEnum[] No

Output

Type: pedido
Required: Yes
List: Yes

create

Create one Pedido

// Create one Pedido
const Pedido = await prisma.pedido.create({
  data: {
    // ... data to create a Pedido
  }
})

Input

Name Type Required
data pedidoCreateInput | pedidoUncheckedCreateInput Yes

Output

Type: pedido
Required: Yes
List: No

delete

Delete one Pedido

// Delete one Pedido
const Pedido = await prisma.pedido.delete({
  where: {
    // ... filter to delete one Pedido
  }
})

Input

Name Type Required
where pedidoWhereUniqueInput Yes

Output

Type: pedido
Required: No
List: No

update

Update one Pedido

// Update one Pedido
const pedido = await prisma.pedido.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data pedidoUpdateInput | pedidoUncheckedUpdateInput Yes
where pedidoWhereUniqueInput Yes

Output

Type: pedido
Required: No
List: No

deleteMany

Delete zero or more Pedido

// Delete a few Pedido
const { count } = await prisma.pedido.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where pedidoWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Pedido

const { count } = await prisma.pedido.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data pedidoUpdateManyMutationInput | pedidoUncheckedUpdateManyInput Yes
where pedidoWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Pedido

// Update or create a Pedido
const pedido = await prisma.pedido.upsert({
  create: {
    // ... data to create a Pedido
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Pedido we want to update
  }
})

Input

Name Type Required
where pedidoWhereUniqueInput Yes
create pedidoCreateInput | pedidoUncheckedCreateInput Yes
update pedidoUpdateInput | pedidoUncheckedUpdateInput Yes

Output

Type: pedido
Required: Yes
List: No

pedido_old

Fields

Name Type Attributes Required Comment
idPedido Int
  • @id
  • @default(autoincrement())
Yes -
idCalendarioMenu Int?
  • -
No -
idMenu Int?
  • -
No -
usuario Int?
  • -
No -
f_registro DateTime?
  • -
No -
f_listo DateTime?
  • -
No -
estado Int?
  • -
No -
persona Int?
  • -
No -
legajo String?
  • -
No -
persona_str String?
  • -
No -
descripcion String?
  • -
No -

Operations

findUnique

Find zero or one Pedido_old

// Get one Pedido_old
const pedido_old = await prisma.pedido_old.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where pedido_oldWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Pedido_old

// Get one Pedido_old
const pedido_old = await prisma.pedido_old.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where pedido_oldWhereInput No
orderBy pedido_oldOrderByWithRelationInput[] | pedido_oldOrderByWithRelationInput No
cursor pedido_oldWhereUniqueInput No
take Int No
skip Int No
distinct Pedido_oldScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Pedido_old

// Get all Pedido_old
const Pedido_old = await prisma.pedido_old.findMany()
// Get first 10 Pedido_old
const Pedido_old = await prisma.pedido_old.findMany({ take: 10 })

Input

Name Type Required
where pedido_oldWhereInput No
orderBy pedido_oldOrderByWithRelationInput[] | pedido_oldOrderByWithRelationInput No
cursor pedido_oldWhereUniqueInput No
take Int No
skip Int No
distinct Pedido_oldScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Pedido_old

// Create one Pedido_old
const Pedido_old = await prisma.pedido_old.create({
  data: {
    // ... data to create a Pedido_old
  }
})

Input

Name Type Required
data pedido_oldCreateInput | pedido_oldUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Pedido_old

// Delete one Pedido_old
const Pedido_old = await prisma.pedido_old.delete({
  where: {
    // ... filter to delete one Pedido_old
  }
})

Input

Name Type Required
where pedido_oldWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Pedido_old

// Update one Pedido_old
const pedido_old = await prisma.pedido_old.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data pedido_oldUpdateInput | pedido_oldUncheckedUpdateInput Yes
where pedido_oldWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Pedido_old

// Delete a few Pedido_old
const { count } = await prisma.pedido_old.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where pedido_oldWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Pedido_old

const { count } = await prisma.pedido_old.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data pedido_oldUpdateManyMutationInput | pedido_oldUncheckedUpdateManyInput Yes
where pedido_oldWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Pedido_old

// Update or create a Pedido_old
const pedido_old = await prisma.pedido_old.upsert({
  create: {
    // ... data to create a Pedido_old
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Pedido_old we want to update
  }
})

Input

Name Type Required
where pedido_oldWhereUniqueInput Yes
create pedido_oldCreateInput | pedido_oldUncheckedCreateInput Yes
update pedido_oldUpdateInput | pedido_oldUncheckedUpdateInput Yes

Output

Required: Yes
List: No

permisos

Fields

Name Type Attributes Required Comment
idPermiso Int
  • @id
  • @default(autoincrement())
Yes -
nombre String
  • -
Yes -
permisos String?
  • -
No -
estado Boolean?
  • -
No -
fecha_registro DateTime?
  • -
No -

Operations

findUnique

Find zero or one Permisos

// Get one Permisos
const permisos = await prisma.permisos.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where permisosWhereUniqueInput Yes

Output

Type: permisos
Required: No
List: No

findFirst

Find first Permisos

// Get one Permisos
const permisos = await prisma.permisos.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where permisosWhereInput No
orderBy permisosOrderByWithRelationInput[] | permisosOrderByWithRelationInput No
cursor permisosWhereUniqueInput No
take Int No
skip Int No
distinct PermisosScalarFieldEnum[] No

Output

Type: permisos
Required: No
List: No

findMany

Find zero or more Permisos

// Get all Permisos
const Permisos = await prisma.permisos.findMany()
// Get first 10 Permisos
const Permisos = await prisma.permisos.findMany({ take: 10 })

Input

Name Type Required
where permisosWhereInput No
orderBy permisosOrderByWithRelationInput[] | permisosOrderByWithRelationInput No
cursor permisosWhereUniqueInput No
take Int No
skip Int No
distinct PermisosScalarFieldEnum[] No

Output

Type: permisos
Required: Yes
List: Yes

create

Create one Permisos

// Create one Permisos
const Permisos = await prisma.permisos.create({
  data: {
    // ... data to create a Permisos
  }
})

Input

Name Type Required
data permisosCreateInput | permisosUncheckedCreateInput Yes

Output

Type: permisos
Required: Yes
List: No

delete

Delete one Permisos

// Delete one Permisos
const Permisos = await prisma.permisos.delete({
  where: {
    // ... filter to delete one Permisos
  }
})

Input

Name Type Required
where permisosWhereUniqueInput Yes

Output

Type: permisos
Required: No
List: No

update

Update one Permisos

// Update one Permisos
const permisos = await prisma.permisos.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data permisosUpdateInput | permisosUncheckedUpdateInput Yes
where permisosWhereUniqueInput Yes

Output

Type: permisos
Required: No
List: No

deleteMany

Delete zero or more Permisos

// Delete a few Permisos
const { count } = await prisma.permisos.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where permisosWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Permisos

const { count } = await prisma.permisos.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data permisosUpdateManyMutationInput | permisosUncheckedUpdateManyInput Yes
where permisosWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Permisos

// Update or create a Permisos
const permisos = await prisma.permisos.upsert({
  create: {
    // ... data to create a Permisos
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Permisos we want to update
  }
})

Input

Name Type Required
where permisosWhereUniqueInput Yes
create permisosCreateInput | permisosUncheckedCreateInput Yes
update permisosUpdateInput | permisosUncheckedUpdateInput Yes

Output

Type: permisos
Required: Yes
List: No

persona

Fields

Name Type Attributes Required Comment
id Int
  • @id
Yes -
nombre String
  • -
Yes -
apellido String
  • -
Yes -
alta DateTime
  • -
Yes -
id_tarjeta Int?
  • -
No -
legajo String?
  • -
No -
preciohora Decimal
  • -
Yes -
extras Int
  • -
Yes -
id_bioadmin Int?
  • -
No -
imagen Bytes?
  • -
No -
inc_reportes Int?
  • -
No -
eliminado DateTime?
  • -
No -
fecha_ingreso DateTime?
  • -
No -
contrasena String?
  • -
No -
rol Int
  • -
Yes -
direccion String?
  • -
No -
dni String?
  • -
No -
email String?
  • -
No -
cel String?
  • -
No -
tel String?
  • -
No -
cp String?
  • -
No -
vehiculo String?
  • -
No -
patente String?
  • -
No -
id_provincia Int?
  • -
No -
localidad String?
  • -
No -
id_calendario Int?
  • -
No -
tarjetazk String?
  • -
No -
fecha_venc DateTime?
  • -
No -
id_sector_por_empresa Int?
  • -
No -
remoto_password String?
  • -
No -
envio_tarde Int
  • -
Yes -
ultima_fecha_envio_tarde DateTime?
  • -
No -
email_trabajo String?
  • -
No -
cuil String?
  • -
No -
pass_myweb String?
  • -
No -
modulos_habilitados String?
  • -
No -
IDPHONE String?
  • -
No -
ES_VISITA Int?
  • -
No -
V_EMPRESA_ORIGEN String?
  • -
No -
V_EMPLEADO_VISITA Int?
  • -
No -
V_PERTENENCIAS String?
  • -
No -
V_NRO_ART String?
  • -
No -
V_MOTIVO_VISITA String?
  • -
No -
V_VENCIDO Int?
  • -
No -
FECHA_NACIMIENTO DateTime?
  • -
No -
PUESTO_TRABAJO String?
  • -
No -

Operations

findUnique

Find zero or one Persona

// Get one Persona
const persona = await prisma.persona.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where personaWhereUniqueInput Yes

Output

Type: persona
Required: No
List: No

findFirst

Find first Persona

// Get one Persona
const persona = await prisma.persona.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where personaWhereInput No
orderBy personaOrderByWithRelationInput[] | personaOrderByWithRelationInput No
cursor personaWhereUniqueInput No
take Int No
skip Int No
distinct PersonaScalarFieldEnum[] No

Output

Type: persona
Required: No
List: No

findMany

Find zero or more Persona

// Get all Persona
const Persona = await prisma.persona.findMany()
// Get first 10 Persona
const Persona = await prisma.persona.findMany({ take: 10 })

Input

Name Type Required
where personaWhereInput No
orderBy personaOrderByWithRelationInput[] | personaOrderByWithRelationInput No
cursor personaWhereUniqueInput No
take Int No
skip Int No
distinct PersonaScalarFieldEnum[] No

Output

Type: persona
Required: Yes
List: Yes

create

Create one Persona

// Create one Persona
const Persona = await prisma.persona.create({
  data: {
    // ... data to create a Persona
  }
})

Input

Name Type Required
data personaCreateInput | personaUncheckedCreateInput Yes

Output

Type: persona
Required: Yes
List: No

delete

Delete one Persona

// Delete one Persona
const Persona = await prisma.persona.delete({
  where: {
    // ... filter to delete one Persona
  }
})

Input

Name Type Required
where personaWhereUniqueInput Yes

Output

Type: persona
Required: No
List: No

update

Update one Persona

// Update one Persona
const persona = await prisma.persona.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data personaUpdateInput | personaUncheckedUpdateInput Yes
where personaWhereUniqueInput Yes

Output

Type: persona
Required: No
List: No

deleteMany

Delete zero or more Persona

// Delete a few Persona
const { count } = await prisma.persona.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where personaWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Persona

const { count } = await prisma.persona.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data personaUpdateManyMutationInput | personaUncheckedUpdateManyInput Yes
where personaWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Persona

// Update or create a Persona
const persona = await prisma.persona.upsert({
  create: {
    // ... data to create a Persona
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Persona we want to update
  }
})

Input

Name Type Required
where personaWhereUniqueInput Yes
create personaCreateInput | personaUncheckedCreateInput Yes
update personaUpdateInput | personaUncheckedUpdateInput Yes

Output

Type: persona
Required: Yes
List: No

premio

Fields

Name Type Attributes Required Comment
idPremio Int
  • @id
  • @default(autoincrement())
Yes -
nombre String?
  • -
No -
descripcion String?
  • -
No -
img String?
  • -
No -
estado Int?
  • -
No -
f_premio DateTime?
  • -
No -
f_proceso DateTime?
  • -
No -
tipo String?
  • -
No -
mes_cumplido Int?
  • -
No -

Operations

findUnique

Find zero or one Premio

// Get one Premio
const premio = await prisma.premio.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where premioWhereUniqueInput Yes

Output

Type: premio
Required: No
List: No

findFirst

Find first Premio

// Get one Premio
const premio = await prisma.premio.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where premioWhereInput No
orderBy premioOrderByWithRelationInput[] | premioOrderByWithRelationInput No
cursor premioWhereUniqueInput No
take Int No
skip Int No
distinct PremioScalarFieldEnum[] No

Output

Type: premio
Required: No
List: No

findMany

Find zero or more Premio

// Get all Premio
const Premio = await prisma.premio.findMany()
// Get first 10 Premio
const Premio = await prisma.premio.findMany({ take: 10 })

Input

Name Type Required
where premioWhereInput No
orderBy premioOrderByWithRelationInput[] | premioOrderByWithRelationInput No
cursor premioWhereUniqueInput No
take Int No
skip Int No
distinct PremioScalarFieldEnum[] No

Output

Type: premio
Required: Yes
List: Yes

create

Create one Premio

// Create one Premio
const Premio = await prisma.premio.create({
  data: {
    // ... data to create a Premio
  }
})

Input

Name Type Required
data premioCreateInput | premioUncheckedCreateInput Yes

Output

Type: premio
Required: Yes
List: No

delete

Delete one Premio

// Delete one Premio
const Premio = await prisma.premio.delete({
  where: {
    // ... filter to delete one Premio
  }
})

Input

Name Type Required
where premioWhereUniqueInput Yes

Output

Type: premio
Required: No
List: No

update

Update one Premio

// Update one Premio
const premio = await prisma.premio.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data premioUpdateInput | premioUncheckedUpdateInput Yes
where premioWhereUniqueInput Yes

Output

Type: premio
Required: No
List: No

deleteMany

Delete zero or more Premio

// Delete a few Premio
const { count } = await prisma.premio.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where premioWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Premio

const { count } = await prisma.premio.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data premioUpdateManyMutationInput | premioUncheckedUpdateManyInput Yes
where premioWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Premio

// Update or create a Premio
const premio = await prisma.premio.upsert({
  create: {
    // ... data to create a Premio
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Premio we want to update
  }
})

Input

Name Type Required
where premioWhereUniqueInput Yes
create premioCreateInput | premioUncheckedCreateInput Yes
update premioUpdateInput | premioUncheckedUpdateInput Yes

Output

Type: premio
Required: Yes
List: No

premio_persona

Fields

Name Type Attributes Required Comment
idPremioPersona Int
  • @id
  • @default(autoincrement())
Yes -
idPremio Int
  • -
Yes -
idPersona Int
  • -
Yes -
descripcion String?
  • -
No -
fecha_entrega DateTime?
  • -
No -
tipo String?
  • -
No -
estado Int
  • @default(1)
Yes -
usuario Int
  • -
Yes -
fecha_registro DateTime
  • -
Yes -

Operations

findUnique

Find zero or one Premio_persona

// Get one Premio_persona
const premio_persona = await prisma.premio_persona.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where premio_personaWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Premio_persona

// Get one Premio_persona
const premio_persona = await prisma.premio_persona.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where premio_personaWhereInput No
orderBy premio_personaOrderByWithRelationInput[] | premio_personaOrderByWithRelationInput No
cursor premio_personaWhereUniqueInput No
take Int No
skip Int No
distinct Premio_personaScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Premio_persona

// Get all Premio_persona
const Premio_persona = await prisma.premio_persona.findMany()
// Get first 10 Premio_persona
const Premio_persona = await prisma.premio_persona.findMany({ take: 10 })

Input

Name Type Required
where premio_personaWhereInput No
orderBy premio_personaOrderByWithRelationInput[] | premio_personaOrderByWithRelationInput No
cursor premio_personaWhereUniqueInput No
take Int No
skip Int No
distinct Premio_personaScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Premio_persona

// Create one Premio_persona
const Premio_persona = await prisma.premio_persona.create({
  data: {
    // ... data to create a Premio_persona
  }
})

Input

Name Type Required
data premio_personaCreateInput | premio_personaUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Premio_persona

// Delete one Premio_persona
const Premio_persona = await prisma.premio_persona.delete({
  where: {
    // ... filter to delete one Premio_persona
  }
})

Input

Name Type Required
where premio_personaWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Premio_persona

// Update one Premio_persona
const premio_persona = await prisma.premio_persona.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data premio_personaUpdateInput | premio_personaUncheckedUpdateInput Yes
where premio_personaWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Premio_persona

// Delete a few Premio_persona
const { count } = await prisma.premio_persona.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where premio_personaWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Premio_persona

const { count } = await prisma.premio_persona.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data premio_personaUpdateManyMutationInput | premio_personaUncheckedUpdateManyInput Yes
where premio_personaWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Premio_persona

// Update or create a Premio_persona
const premio_persona = await prisma.premio_persona.upsert({
  create: {
    // ... data to create a Premio_persona
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Premio_persona we want to update
  }
})

Input

Name Type Required
where premio_personaWhereUniqueInput Yes
create premio_personaCreateInput | premio_personaUncheckedCreateInput Yes
update premio_personaUpdateInput | premio_personaUncheckedUpdateInput Yes

Output

Required: Yes
List: No

sala

Fields

Name Type Attributes Required Comment
idSala Int
  • @id
  • @default(autoincrement())
Yes -
title String?
  • -
No -
descripcion String?
  • -
No -
color String?
  • -
No -
textColor String?
  • -
No -
start String?
  • -
No -
end String?
  • -
No -
estado Int?
  • -
No -
f_creacion DateTime?
  • -
No -
usuario Int?
  • -
No -

Operations

findUnique

Find zero or one Sala

// Get one Sala
const sala = await prisma.sala.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where salaWhereUniqueInput Yes

Output

Type: sala
Required: No
List: No

findFirst

Find first Sala

// Get one Sala
const sala = await prisma.sala.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where salaWhereInput No
orderBy salaOrderByWithRelationInput[] | salaOrderByWithRelationInput No
cursor salaWhereUniqueInput No
take Int No
skip Int No
distinct SalaScalarFieldEnum[] No

Output

Type: sala
Required: No
List: No

findMany

Find zero or more Sala

// Get all Sala
const Sala = await prisma.sala.findMany()
// Get first 10 Sala
const Sala = await prisma.sala.findMany({ take: 10 })

Input

Name Type Required
where salaWhereInput No
orderBy salaOrderByWithRelationInput[] | salaOrderByWithRelationInput No
cursor salaWhereUniqueInput No
take Int No
skip Int No
distinct SalaScalarFieldEnum[] No

Output

Type: sala
Required: Yes
List: Yes

create

Create one Sala

// Create one Sala
const Sala = await prisma.sala.create({
  data: {
    // ... data to create a Sala
  }
})

Input

Name Type Required
data salaCreateInput | salaUncheckedCreateInput Yes

Output

Type: sala
Required: Yes
List: No

delete

Delete one Sala

// Delete one Sala
const Sala = await prisma.sala.delete({
  where: {
    // ... filter to delete one Sala
  }
})

Input

Name Type Required
where salaWhereUniqueInput Yes

Output

Type: sala
Required: No
List: No

update

Update one Sala

// Update one Sala
const sala = await prisma.sala.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data salaUpdateInput | salaUncheckedUpdateInput Yes
where salaWhereUniqueInput Yes

Output

Type: sala
Required: No
List: No

deleteMany

Delete zero or more Sala

// Delete a few Sala
const { count } = await prisma.sala.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where salaWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Sala

const { count } = await prisma.sala.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data salaUpdateManyMutationInput | salaUncheckedUpdateManyInput Yes
where salaWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Sala

// Update or create a Sala
const sala = await prisma.sala.upsert({
  create: {
    // ... data to create a Sala
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Sala we want to update
  }
})

Input

Name Type Required
where salaWhereUniqueInput Yes
create salaCreateInput | salaUncheckedCreateInput Yes
update salaUpdateInput | salaUncheckedUpdateInput Yes

Output

Type: sala
Required: Yes
List: No

sala_copy

Fields

Name Type Attributes Required Comment
idSala Int
  • @id
  • @default(autoincrement())
Yes -
title String?
  • -
No -
descripcion String?
  • -
No -
color String?
  • -
No -
textColor String?
  • -
No -
start DateTime?
  • -
No -
end DateTime?
  • -
No -
estado Int?
  • -
No -
f_creacion DateTime?
  • -
No -
usuario Int?
  • -
No -

Operations

findUnique

Find zero or one Sala_copy

// Get one Sala_copy
const sala_copy = await prisma.sala_copy.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where sala_copyWhereUniqueInput Yes

Output

Type: sala_copy
Required: No
List: No

findFirst

Find first Sala_copy

// Get one Sala_copy
const sala_copy = await prisma.sala_copy.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where sala_copyWhereInput No
orderBy sala_copyOrderByWithRelationInput[] | sala_copyOrderByWithRelationInput No
cursor sala_copyWhereUniqueInput No
take Int No
skip Int No
distinct Sala_copyScalarFieldEnum[] No

Output

Type: sala_copy
Required: No
List: No

findMany

Find zero or more Sala_copy

// Get all Sala_copy
const Sala_copy = await prisma.sala_copy.findMany()
// Get first 10 Sala_copy
const Sala_copy = await prisma.sala_copy.findMany({ take: 10 })

Input

Name Type Required
where sala_copyWhereInput No
orderBy sala_copyOrderByWithRelationInput[] | sala_copyOrderByWithRelationInput No
cursor sala_copyWhereUniqueInput No
take Int No
skip Int No
distinct Sala_copyScalarFieldEnum[] No

Output

Type: sala_copy
Required: Yes
List: Yes

create

Create one Sala_copy

// Create one Sala_copy
const Sala_copy = await prisma.sala_copy.create({
  data: {
    // ... data to create a Sala_copy
  }
})

Input

Name Type Required
data sala_copyCreateInput | sala_copyUncheckedCreateInput Yes

Output

Type: sala_copy
Required: Yes
List: No

delete

Delete one Sala_copy

// Delete one Sala_copy
const Sala_copy = await prisma.sala_copy.delete({
  where: {
    // ... filter to delete one Sala_copy
  }
})

Input

Name Type Required
where sala_copyWhereUniqueInput Yes

Output

Type: sala_copy
Required: No
List: No

update

Update one Sala_copy

// Update one Sala_copy
const sala_copy = await prisma.sala_copy.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data sala_copyUpdateInput | sala_copyUncheckedUpdateInput Yes
where sala_copyWhereUniqueInput Yes

Output

Type: sala_copy
Required: No
List: No

deleteMany

Delete zero or more Sala_copy

// Delete a few Sala_copy
const { count } = await prisma.sala_copy.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where sala_copyWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Sala_copy

const { count } = await prisma.sala_copy.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data sala_copyUpdateManyMutationInput | sala_copyUncheckedUpdateManyInput Yes
where sala_copyWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Sala_copy

// Update or create a Sala_copy
const sala_copy = await prisma.sala_copy.upsert({
  create: {
    // ... data to create a Sala_copy
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Sala_copy we want to update
  }
})

Input

Name Type Required
where sala_copyWhereUniqueInput Yes
create sala_copyCreateInput | sala_copyUncheckedCreateInput Yes
update sala_copyUpdateInput | sala_copyUncheckedUpdateInput Yes

Output

Type: sala_copy
Required: Yes
List: No

sector

Fields

Name Type Attributes Required Comment
idSector Int
  • @id
  • @default(autoincrement())
Yes -
nombre String?
  • -
No -
estado Int?
  • -
No -

Operations

findUnique

Find zero or one Sector

// Get one Sector
const sector = await prisma.sector.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where sectorWhereUniqueInput Yes

Output

Type: sector
Required: No
List: No

findFirst

Find first Sector

// Get one Sector
const sector = await prisma.sector.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where sectorWhereInput No
orderBy sectorOrderByWithRelationInput[] | sectorOrderByWithRelationInput No
cursor sectorWhereUniqueInput No
take Int No
skip Int No
distinct SectorScalarFieldEnum[] No

Output

Type: sector
Required: No
List: No

findMany

Find zero or more Sector

// Get all Sector
const Sector = await prisma.sector.findMany()
// Get first 10 Sector
const Sector = await prisma.sector.findMany({ take: 10 })

Input

Name Type Required
where sectorWhereInput No
orderBy sectorOrderByWithRelationInput[] | sectorOrderByWithRelationInput No
cursor sectorWhereUniqueInput No
take Int No
skip Int No
distinct SectorScalarFieldEnum[] No

Output

Type: sector
Required: Yes
List: Yes

create

Create one Sector

// Create one Sector
const Sector = await prisma.sector.create({
  data: {
    // ... data to create a Sector
  }
})

Input

Name Type Required
data sectorCreateInput | sectorUncheckedCreateInput Yes

Output

Type: sector
Required: Yes
List: No

delete

Delete one Sector

// Delete one Sector
const Sector = await prisma.sector.delete({
  where: {
    // ... filter to delete one Sector
  }
})

Input

Name Type Required
where sectorWhereUniqueInput Yes

Output

Type: sector
Required: No
List: No

update

Update one Sector

// Update one Sector
const sector = await prisma.sector.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data sectorUpdateInput | sectorUncheckedUpdateInput Yes
where sectorWhereUniqueInput Yes

Output

Type: sector
Required: No
List: No

deleteMany

Delete zero or more Sector

// Delete a few Sector
const { count } = await prisma.sector.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where sectorWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Sector

const { count } = await prisma.sector.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data sectorUpdateManyMutationInput | sectorUncheckedUpdateManyInput Yes
where sectorWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Sector

// Update or create a Sector
const sector = await prisma.sector.upsert({
  create: {
    // ... data to create a Sector
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Sector we want to update
  }
})

Input

Name Type Required
where sectorWhereUniqueInput Yes
create sectorCreateInput | sectorUncheckedCreateInput Yes
update sectorUpdateInput | sectorUncheckedUpdateInput Yes

Output

Type: sector
Required: Yes
List: No

seleccion_personal

Fields

Name Type Attributes Required Comment
idSeleccion_personal Int
  • @id
  • @default(autoincrement())
Yes -
nombre String?
  • -
No -
apellido String?
  • -
No -
domicilio String?
  • -
No -
contacto String?
  • -
No -
fuente_reclutamiento String?
  • -
No -
descripcion String?
  • -
No -
estado Int?
  • -
No -
f_proceso DateTime?
  • -
No -
meta_estado String?
  • -
No -
fecha_meta_estado DateTime?
  • -
No -
sector Int?
  • @default(0)
No -

Operations

findUnique

Find zero or one Seleccion_personal

// Get one Seleccion_personal
const seleccion_personal = await prisma.seleccion_personal.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where seleccion_personalWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Seleccion_personal

// Get one Seleccion_personal
const seleccion_personal = await prisma.seleccion_personal.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where seleccion_personalWhereInput No
orderBy seleccion_personalOrderByWithRelationInput[] | seleccion_personalOrderByWithRelationInput No
cursor seleccion_personalWhereUniqueInput No
take Int No
skip Int No
distinct Seleccion_personalScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Seleccion_personal

// Get all Seleccion_personal
const Seleccion_personal = await prisma.seleccion_personal.findMany()
// Get first 10 Seleccion_personal
const Seleccion_personal = await prisma.seleccion_personal.findMany({ take: 10 })

Input

Name Type Required
where seleccion_personalWhereInput No
orderBy seleccion_personalOrderByWithRelationInput[] | seleccion_personalOrderByWithRelationInput No
cursor seleccion_personalWhereUniqueInput No
take Int No
skip Int No
distinct Seleccion_personalScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Seleccion_personal

// Create one Seleccion_personal
const Seleccion_personal = await prisma.seleccion_personal.create({
  data: {
    // ... data to create a Seleccion_personal
  }
})

Input

Name Type Required
data seleccion_personalCreateInput | seleccion_personalUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Seleccion_personal

// Delete one Seleccion_personal
const Seleccion_personal = await prisma.seleccion_personal.delete({
  where: {
    // ... filter to delete one Seleccion_personal
  }
})

Input

Name Type Required
where seleccion_personalWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Seleccion_personal

// Update one Seleccion_personal
const seleccion_personal = await prisma.seleccion_personal.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data seleccion_personalUpdateInput | seleccion_personalUncheckedUpdateInput Yes
where seleccion_personalWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Seleccion_personal

// Delete a few Seleccion_personal
const { count } = await prisma.seleccion_personal.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where seleccion_personalWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Seleccion_personal

const { count } = await prisma.seleccion_personal.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data seleccion_personalUpdateManyMutationInput | seleccion_personalUncheckedUpdateManyInput Yes
where seleccion_personalWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Seleccion_personal

// Update or create a Seleccion_personal
const seleccion_personal = await prisma.seleccion_personal.upsert({
  create: {
    // ... data to create a Seleccion_personal
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Seleccion_personal we want to update
  }
})

Input

Name Type Required
where seleccion_personalWhereUniqueInput Yes
create seleccion_personalCreateInput | seleccion_personalUncheckedCreateInput Yes
update seleccion_personalUpdateInput | seleccion_personalUncheckedUpdateInput Yes

Output

Required: Yes
List: No

slot_test

Name Value
@@id
  • tst_id
  • tst_egm

Fields

Name Type Attributes Required Comment
tst_id Int
  • @default(autoincrement())
Yes -
tst_egm Int
  • -
Yes -
tst_srl_acept String
  • -
Yes -
tst_srl_impr String
  • -
Yes -
tst_srl_monit String
  • -
Yes -
tst_srl_bckpln String
  • -
Yes -
tst_srl_mother String
  • -
Yes -
tst_hora_fecha DateTime
  • @default(now())
Yes -

Operations

findUnique

Find zero or one Slot_test

// Get one Slot_test
const slot_test = await prisma.slot_test.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where slot_testWhereUniqueInput Yes

Output

Type: slot_test
Required: No
List: No

findFirst

Find first Slot_test

// Get one Slot_test
const slot_test = await prisma.slot_test.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where slot_testWhereInput No
orderBy slot_testOrderByWithRelationInput[] | slot_testOrderByWithRelationInput No
cursor slot_testWhereUniqueInput No
take Int No
skip Int No
distinct Slot_testScalarFieldEnum[] No

Output

Type: slot_test
Required: No
List: No

findMany

Find zero or more Slot_test

// Get all Slot_test
const Slot_test = await prisma.slot_test.findMany()
// Get first 10 Slot_test
const Slot_test = await prisma.slot_test.findMany({ take: 10 })

Input

Name Type Required
where slot_testWhereInput No
orderBy slot_testOrderByWithRelationInput[] | slot_testOrderByWithRelationInput No
cursor slot_testWhereUniqueInput No
take Int No
skip Int No
distinct Slot_testScalarFieldEnum[] No

Output

Type: slot_test
Required: Yes
List: Yes

create

Create one Slot_test

// Create one Slot_test
const Slot_test = await prisma.slot_test.create({
  data: {
    // ... data to create a Slot_test
  }
})

Input

Name Type Required
data slot_testCreateInput | slot_testUncheckedCreateInput Yes

Output

Type: slot_test
Required: Yes
List: No

delete

Delete one Slot_test

// Delete one Slot_test
const Slot_test = await prisma.slot_test.delete({
  where: {
    // ... filter to delete one Slot_test
  }
})

Input

Name Type Required
where slot_testWhereUniqueInput Yes

Output

Type: slot_test
Required: No
List: No

update

Update one Slot_test

// Update one Slot_test
const slot_test = await prisma.slot_test.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data slot_testUpdateInput | slot_testUncheckedUpdateInput Yes
where slot_testWhereUniqueInput Yes

Output

Type: slot_test
Required: No
List: No

deleteMany

Delete zero or more Slot_test

// Delete a few Slot_test
const { count } = await prisma.slot_test.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where slot_testWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Slot_test

const { count } = await prisma.slot_test.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data slot_testUpdateManyMutationInput | slot_testUncheckedUpdateManyInput Yes
where slot_testWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Slot_test

// Update or create a Slot_test
const slot_test = await prisma.slot_test.upsert({
  create: {
    // ... data to create a Slot_test
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Slot_test we want to update
  }
})

Input

Name Type Required
where slot_testWhereUniqueInput Yes
create slot_testCreateInput | slot_testUncheckedCreateInput Yes
update slot_testUpdateInput | slot_testUncheckedUpdateInput Yes

Output

Type: slot_test
Required: Yes
List: No

stock_bejerman

Fields

Name Type Attributes Required Comment
stkart_codgen String?
  • -
No -
skart_codEle1 String?
  • -
No -
skart_codEle2 String?
  • -
No -
skart_codEle3 String?
  • -
No -
deposito String?
  • -
No -
cantidad String?
  • -
No -
f_carga_bejerman String?
  • -
No -
autor String?
  • -
No -
id_stock_bejerman Int
  • @id
  • @default(autoincrement())
Yes -

Operations

findUnique

Find zero or one Stock_bejerman

// Get one Stock_bejerman
const stock_bejerman = await prisma.stock_bejerman.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where stock_bejermanWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Stock_bejerman

// Get one Stock_bejerman
const stock_bejerman = await prisma.stock_bejerman.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where stock_bejermanWhereInput No
orderBy stock_bejermanOrderByWithRelationInput[] | stock_bejermanOrderByWithRelationInput No
cursor stock_bejermanWhereUniqueInput No
take Int No
skip Int No
distinct Stock_bejermanScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Stock_bejerman

// Get all Stock_bejerman
const Stock_bejerman = await prisma.stock_bejerman.findMany()
// Get first 10 Stock_bejerman
const Stock_bejerman = await prisma.stock_bejerman.findMany({ take: 10 })

Input

Name Type Required
where stock_bejermanWhereInput No
orderBy stock_bejermanOrderByWithRelationInput[] | stock_bejermanOrderByWithRelationInput No
cursor stock_bejermanWhereUniqueInput No
take Int No
skip Int No
distinct Stock_bejermanScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Stock_bejerman

// Create one Stock_bejerman
const Stock_bejerman = await prisma.stock_bejerman.create({
  data: {
    // ... data to create a Stock_bejerman
  }
})

Input

Name Type Required
data stock_bejermanCreateInput | stock_bejermanUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Stock_bejerman

// Delete one Stock_bejerman
const Stock_bejerman = await prisma.stock_bejerman.delete({
  where: {
    // ... filter to delete one Stock_bejerman
  }
})

Input

Name Type Required
where stock_bejermanWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Stock_bejerman

// Update one Stock_bejerman
const stock_bejerman = await prisma.stock_bejerman.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data stock_bejermanUpdateInput | stock_bejermanUncheckedUpdateInput Yes
where stock_bejermanWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Stock_bejerman

// Delete a few Stock_bejerman
const { count } = await prisma.stock_bejerman.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where stock_bejermanWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Stock_bejerman

const { count } = await prisma.stock_bejerman.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data stock_bejermanUpdateManyMutationInput | stock_bejermanUncheckedUpdateManyInput Yes
where stock_bejermanWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Stock_bejerman

// Update or create a Stock_bejerman
const stock_bejerman = await prisma.stock_bejerman.upsert({
  create: {
    // ... data to create a Stock_bejerman
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Stock_bejerman we want to update
  }
})

Input

Name Type Required
where stock_bejermanWhereUniqueInput Yes
create stock_bejermanCreateInput | stock_bejermanUncheckedCreateInput Yes
update stock_bejermanUpdateInput | stock_bejermanUncheckedUpdateInput Yes

Output

Required: Yes
List: No

tema

Fields

Name Type Attributes Required Comment
idTema Int
  • @id
  • @default(autoincrement())
Yes -
nombre String?
  • -
No -
estado Int?
  • -
No -

Operations

findUnique

Find zero or one Tema

// Get one Tema
const tema = await prisma.tema.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where temaWhereUniqueInput Yes

Output

Type: tema
Required: No
List: No

findFirst

Find first Tema

// Get one Tema
const tema = await prisma.tema.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where temaWhereInput No
orderBy temaOrderByWithRelationInput[] | temaOrderByWithRelationInput No
cursor temaWhereUniqueInput No
take Int No
skip Int No
distinct TemaScalarFieldEnum[] No

Output

Type: tema
Required: No
List: No

findMany

Find zero or more Tema

// Get all Tema
const Tema = await prisma.tema.findMany()
// Get first 10 Tema
const Tema = await prisma.tema.findMany({ take: 10 })

Input

Name Type Required
where temaWhereInput No
orderBy temaOrderByWithRelationInput[] | temaOrderByWithRelationInput No
cursor temaWhereUniqueInput No
take Int No
skip Int No
distinct TemaScalarFieldEnum[] No

Output

Type: tema
Required: Yes
List: Yes

create

Create one Tema

// Create one Tema
const Tema = await prisma.tema.create({
  data: {
    // ... data to create a Tema
  }
})

Input

Name Type Required
data temaCreateInput | temaUncheckedCreateInput Yes

Output

Type: tema
Required: Yes
List: No

delete

Delete one Tema

// Delete one Tema
const Tema = await prisma.tema.delete({
  where: {
    // ... filter to delete one Tema
  }
})

Input

Name Type Required
where temaWhereUniqueInput Yes

Output

Type: tema
Required: No
List: No

update

Update one Tema

// Update one Tema
const tema = await prisma.tema.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data temaUpdateInput | temaUncheckedUpdateInput Yes
where temaWhereUniqueInput Yes

Output

Type: tema
Required: No
List: No

deleteMany

Delete zero or more Tema

// Delete a few Tema
const { count } = await prisma.tema.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where temaWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Tema

const { count } = await prisma.tema.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data temaUpdateManyMutationInput | temaUncheckedUpdateManyInput Yes
where temaWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Tema

// Update or create a Tema
const tema = await prisma.tema.upsert({
  create: {
    // ... data to create a Tema
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Tema we want to update
  }
})

Input

Name Type Required
where temaWhereUniqueInput Yes
create temaCreateInput | temaUncheckedCreateInput Yes
update temaUpdateInput | temaUncheckedUpdateInput Yes

Output

Type: tema
Required: Yes
List: No

ticket

Fields

Name Type Attributes Required Comment
idTicket Int
  • @id
  • @default(autoincrement())
Yes -
solicita Int
  • @default(0)
Yes -
idAsignado Int
  • @default(0)
Yes -
referencia Int
  • @default(0)
Yes -
descripcion String?
  • -
No -
prioridad String?
  • -
No -
estado Boolean?
  • @default(true)
No -
f_solicitud DateTime?
  • -
No -
f_respuesta DateTime?
  • -
No -
modulo String?
  • -
No -
submodulo String?
  • -
No -
categoria String?
  • -
No -
tipo String?
  • -
No -
f_cierre DateTime
  • -
Yes -
f_proceso DateTime
  • -
Yes -
f_atencion DateTime
  • -
Yes -
sector Int?
  • -
No -

Operations

findUnique

Find zero or one Ticket

// Get one Ticket
const ticket = await prisma.ticket.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ticketWhereUniqueInput Yes

Output

Type: ticket
Required: No
List: No

findFirst

Find first Ticket

// Get one Ticket
const ticket = await prisma.ticket.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ticketWhereInput No
orderBy ticketOrderByWithRelationInput[] | ticketOrderByWithRelationInput No
cursor ticketWhereUniqueInput No
take Int No
skip Int No
distinct TicketScalarFieldEnum[] No

Output

Type: ticket
Required: No
List: No

findMany

Find zero or more Ticket

// Get all Ticket
const Ticket = await prisma.ticket.findMany()
// Get first 10 Ticket
const Ticket = await prisma.ticket.findMany({ take: 10 })

Input

Name Type Required
where ticketWhereInput No
orderBy ticketOrderByWithRelationInput[] | ticketOrderByWithRelationInput No
cursor ticketWhereUniqueInput No
take Int No
skip Int No
distinct TicketScalarFieldEnum[] No

Output

Type: ticket
Required: Yes
List: Yes

create

Create one Ticket

// Create one Ticket
const Ticket = await prisma.ticket.create({
  data: {
    // ... data to create a Ticket
  }
})

Input

Name Type Required
data ticketCreateInput | ticketUncheckedCreateInput Yes

Output

Type: ticket
Required: Yes
List: No

delete

Delete one Ticket

// Delete one Ticket
const Ticket = await prisma.ticket.delete({
  where: {
    // ... filter to delete one Ticket
  }
})

Input

Name Type Required
where ticketWhereUniqueInput Yes

Output

Type: ticket
Required: No
List: No

update

Update one Ticket

// Update one Ticket
const ticket = await prisma.ticket.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ticketUpdateInput | ticketUncheckedUpdateInput Yes
where ticketWhereUniqueInput Yes

Output

Type: ticket
Required: No
List: No

deleteMany

Delete zero or more Ticket

// Delete a few Ticket
const { count } = await prisma.ticket.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ticketWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Ticket

const { count } = await prisma.ticket.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ticketUpdateManyMutationInput | ticketUncheckedUpdateManyInput Yes
where ticketWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Ticket

// Update or create a Ticket
const ticket = await prisma.ticket.upsert({
  create: {
    // ... data to create a Ticket
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Ticket we want to update
  }
})

Input

Name Type Required
where ticketWhereUniqueInput Yes
create ticketCreateInput | ticketUncheckedCreateInput Yes
update ticketUpdateInput | ticketUncheckedUpdateInput Yes

Output

Type: ticket
Required: Yes
List: No

titulo

Fields

Name Type Attributes Required Comment
idTitulo Int
  • @id
  • @default(autoincrement())
Yes -
nombre String?
  • -
No -
estado Int?
  • @default(1)
No -

Operations

findUnique

Find zero or one Titulo

// Get one Titulo
const titulo = await prisma.titulo.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where tituloWhereUniqueInput Yes

Output

Type: titulo
Required: No
List: No

findFirst

Find first Titulo

// Get one Titulo
const titulo = await prisma.titulo.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where tituloWhereInput No
orderBy tituloOrderByWithRelationInput[] | tituloOrderByWithRelationInput No
cursor tituloWhereUniqueInput No
take Int No
skip Int No
distinct TituloScalarFieldEnum[] No

Output

Type: titulo
Required: No
List: No

findMany

Find zero or more Titulo

// Get all Titulo
const Titulo = await prisma.titulo.findMany()
// Get first 10 Titulo
const Titulo = await prisma.titulo.findMany({ take: 10 })

Input

Name Type Required
where tituloWhereInput No
orderBy tituloOrderByWithRelationInput[] | tituloOrderByWithRelationInput No
cursor tituloWhereUniqueInput No
take Int No
skip Int No
distinct TituloScalarFieldEnum[] No

Output

Type: titulo
Required: Yes
List: Yes

create

Create one Titulo

// Create one Titulo
const Titulo = await prisma.titulo.create({
  data: {
    // ... data to create a Titulo
  }
})

Input

Name Type Required
data tituloCreateInput | tituloUncheckedCreateInput Yes

Output

Type: titulo
Required: Yes
List: No

delete

Delete one Titulo

// Delete one Titulo
const Titulo = await prisma.titulo.delete({
  where: {
    // ... filter to delete one Titulo
  }
})

Input

Name Type Required
where tituloWhereUniqueInput Yes

Output

Type: titulo
Required: No
List: No

update

Update one Titulo

// Update one Titulo
const titulo = await prisma.titulo.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data tituloUpdateInput | tituloUncheckedUpdateInput Yes
where tituloWhereUniqueInput Yes

Output

Type: titulo
Required: No
List: No

deleteMany

Delete zero or more Titulo

// Delete a few Titulo
const { count } = await prisma.titulo.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where tituloWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Titulo

const { count } = await prisma.titulo.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data tituloUpdateManyMutationInput | tituloUncheckedUpdateManyInput Yes
where tituloWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Titulo

// Update or create a Titulo
const titulo = await prisma.titulo.upsert({
  create: {
    // ... data to create a Titulo
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Titulo we want to update
  }
})

Input

Name Type Required
where tituloWhereUniqueInput Yes
create tituloCreateInput | tituloUncheckedCreateInput Yes
update tituloUpdateInput | tituloUncheckedUpdateInput Yes

Output

Type: titulo
Required: Yes
List: No

uniforme

Fields

Name Type Attributes Required Comment
idUniforme Int
  • @id
  • @default(autoincrement())
Yes -
prenda String?
  • -
No -
tipo_prenda String?
  • -
No -
talle String?
  • -
No -
cantidad Int?
  • -
No -
estado Int?
  • @default(1)
No -

Operations

findUnique

Find zero or one Uniforme

// Get one Uniforme
const uniforme = await prisma.uniforme.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where uniformeWhereUniqueInput Yes

Output

Type: uniforme
Required: No
List: No

findFirst

Find first Uniforme

// Get one Uniforme
const uniforme = await prisma.uniforme.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where uniformeWhereInput No
orderBy uniformeOrderByWithRelationInput[] | uniformeOrderByWithRelationInput No
cursor uniformeWhereUniqueInput No
take Int No
skip Int No
distinct UniformeScalarFieldEnum[] No

Output

Type: uniforme
Required: No
List: No

findMany

Find zero or more Uniforme

// Get all Uniforme
const Uniforme = await prisma.uniforme.findMany()
// Get first 10 Uniforme
const Uniforme = await prisma.uniforme.findMany({ take: 10 })

Input

Name Type Required
where uniformeWhereInput No
orderBy uniformeOrderByWithRelationInput[] | uniformeOrderByWithRelationInput No
cursor uniformeWhereUniqueInput No
take Int No
skip Int No
distinct UniformeScalarFieldEnum[] No

Output

Type: uniforme
Required: Yes
List: Yes

create

Create one Uniforme

// Create one Uniforme
const Uniforme = await prisma.uniforme.create({
  data: {
    // ... data to create a Uniforme
  }
})

Input

Name Type Required
data uniformeCreateInput | uniformeUncheckedCreateInput Yes

Output

Type: uniforme
Required: Yes
List: No

delete

Delete one Uniforme

// Delete one Uniforme
const Uniforme = await prisma.uniforme.delete({
  where: {
    // ... filter to delete one Uniforme
  }
})

Input

Name Type Required
where uniformeWhereUniqueInput Yes

Output

Type: uniforme
Required: No
List: No

update

Update one Uniforme

// Update one Uniforme
const uniforme = await prisma.uniforme.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data uniformeUpdateInput | uniformeUncheckedUpdateInput Yes
where uniformeWhereUniqueInput Yes

Output

Type: uniforme
Required: No
List: No

deleteMany

Delete zero or more Uniforme

// Delete a few Uniforme
const { count } = await prisma.uniforme.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where uniformeWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Uniforme

const { count } = await prisma.uniforme.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data uniformeUpdateManyMutationInput | uniformeUncheckedUpdateManyInput Yes
where uniformeWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Uniforme

// Update or create a Uniforme
const uniforme = await prisma.uniforme.upsert({
  create: {
    // ... data to create a Uniforme
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Uniforme we want to update
  }
})

Input

Name Type Required
where uniformeWhereUniqueInput Yes
create uniformeCreateInput | uniformeUncheckedCreateInput Yes
update uniformeUpdateInput | uniformeUncheckedUpdateInput Yes

Output

Type: uniforme
Required: Yes
List: No

uniforme_has_persona

Fields

Name Type Attributes Required Comment
idUniforme_has_persona Int
  • @id
  • @default(autoincrement())
Yes -
idUniforme String
  • -
Yes -
idPersona Int
  • -
Yes -
f_proceso DateTime?
  • -
No -
detalle String?
  • -
No -
descripcion String?
  • -
No -
usuario Int?
  • -
No -
estado Int?
  • @default(1)
No -

Operations

findUnique

Find zero or one Uniforme_has_persona

// Get one Uniforme_has_persona
const uniforme_has_persona = await prisma.uniforme_has_persona.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where uniforme_has_personaWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Uniforme_has_persona

// Get one Uniforme_has_persona
const uniforme_has_persona = await prisma.uniforme_has_persona.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where uniforme_has_personaWhereInput No
orderBy uniforme_has_personaOrderByWithRelationInput[] | uniforme_has_personaOrderByWithRelationInput No
cursor uniforme_has_personaWhereUniqueInput No
take Int No
skip Int No
distinct Uniforme_has_personaScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Uniforme_has_persona

// Get all Uniforme_has_persona
const Uniforme_has_persona = await prisma.uniforme_has_persona.findMany()
// Get first 10 Uniforme_has_persona
const Uniforme_has_persona = await prisma.uniforme_has_persona.findMany({ take: 10 })

Input

Name Type Required
where uniforme_has_personaWhereInput No
orderBy uniforme_has_personaOrderByWithRelationInput[] | uniforme_has_personaOrderByWithRelationInput No
cursor uniforme_has_personaWhereUniqueInput No
take Int No
skip Int No
distinct Uniforme_has_personaScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Uniforme_has_persona

// Create one Uniforme_has_persona
const Uniforme_has_persona = await prisma.uniforme_has_persona.create({
  data: {
    // ... data to create a Uniforme_has_persona
  }
})

Input

Name Type Required
data uniforme_has_personaCreateInput | uniforme_has_personaUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Uniforme_has_persona

// Delete one Uniforme_has_persona
const Uniforme_has_persona = await prisma.uniforme_has_persona.delete({
  where: {
    // ... filter to delete one Uniforme_has_persona
  }
})

Input

Name Type Required
where uniforme_has_personaWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Uniforme_has_persona

// Update one Uniforme_has_persona
const uniforme_has_persona = await prisma.uniforme_has_persona.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data uniforme_has_personaUpdateInput | uniforme_has_personaUncheckedUpdateInput Yes
where uniforme_has_personaWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Uniforme_has_persona

// Delete a few Uniforme_has_persona
const { count } = await prisma.uniforme_has_persona.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where uniforme_has_personaWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Uniforme_has_persona

const { count } = await prisma.uniforme_has_persona.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data uniforme_has_personaUpdateManyMutationInput | uniforme_has_personaUncheckedUpdateManyInput Yes
where uniforme_has_personaWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Uniforme_has_persona

// Update or create a Uniforme_has_persona
const uniforme_has_persona = await prisma.uniforme_has_persona.upsert({
  create: {
    // ... data to create a Uniforme_has_persona
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Uniforme_has_persona we want to update
  }
})

Input

Name Type Required
where uniforme_has_personaWhereUniqueInput Yes
create uniforme_has_personaCreateInput | uniforme_has_personaUncheckedCreateInput Yes
update uniforme_has_personaUpdateInput | uniforme_has_personaUncheckedUpdateInput Yes

Output

Required: Yes
List: No

usuarios

Fields

Name Type Attributes Required Comment
idUsuarios Int
  • @id
  • @default(autoincrement())
Yes -
nombre String
  • -
Yes -
usr String
  • -
Yes -
email String
  • -
Yes -
clave String
  • -
Yes -
celular String?
  • -
No -
estado Boolean
  • -
Yes -
permisos_id Int
  • -
Yes -
fecha_registro DateTime
  • -
Yes -
legajo String?
  • -
No -

Operations

findUnique

Find zero or one Usuarios

// Get one Usuarios
const usuarios = await prisma.usuarios.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where usuariosWhereUniqueInput Yes

Output

Type: usuarios
Required: No
List: No

findFirst

Find first Usuarios

// Get one Usuarios
const usuarios = await prisma.usuarios.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where usuariosWhereInput No
orderBy usuariosOrderByWithRelationInput[] | usuariosOrderByWithRelationInput No
cursor usuariosWhereUniqueInput No
take Int No
skip Int No
distinct UsuariosScalarFieldEnum[] No

Output

Type: usuarios
Required: No
List: No

findMany

Find zero or more Usuarios

// Get all Usuarios
const Usuarios = await prisma.usuarios.findMany()
// Get first 10 Usuarios
const Usuarios = await prisma.usuarios.findMany({ take: 10 })

Input

Name Type Required
where usuariosWhereInput No
orderBy usuariosOrderByWithRelationInput[] | usuariosOrderByWithRelationInput No
cursor usuariosWhereUniqueInput No
take Int No
skip Int No
distinct UsuariosScalarFieldEnum[] No

Output

Type: usuarios
Required: Yes
List: Yes

create

Create one Usuarios

// Create one Usuarios
const Usuarios = await prisma.usuarios.create({
  data: {
    // ... data to create a Usuarios
  }
})

Input

Name Type Required
data usuariosCreateInput | usuariosUncheckedCreateInput Yes

Output

Type: usuarios
Required: Yes
List: No

delete

Delete one Usuarios

// Delete one Usuarios
const Usuarios = await prisma.usuarios.delete({
  where: {
    // ... filter to delete one Usuarios
  }
})

Input

Name Type Required
where usuariosWhereUniqueInput Yes

Output

Type: usuarios
Required: No
List: No

update

Update one Usuarios

// Update one Usuarios
const usuarios = await prisma.usuarios.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data usuariosUpdateInput | usuariosUncheckedUpdateInput Yes
where usuariosWhereUniqueInput Yes

Output

Type: usuarios
Required: No
List: No

deleteMany

Delete zero or more Usuarios

// Delete a few Usuarios
const { count } = await prisma.usuarios.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where usuariosWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Usuarios

const { count } = await prisma.usuarios.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data usuariosUpdateManyMutationInput | usuariosUncheckedUpdateManyInput Yes
where usuariosWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Usuarios

// Update or create a Usuarios
const usuarios = await prisma.usuarios.upsert({
  create: {
    // ... data to create a Usuarios
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Usuarios we want to update
  }
})

Input

Name Type Required
where usuariosWhereUniqueInput Yes
create usuariosCreateInput | usuariosUncheckedCreateInput Yes
update usuariosUpdateInput | usuariosUncheckedUpdateInput Yes

Output

Type: usuarios
Required: Yes
List: No

vacuna_persona

Fields

Name Type Attributes Required Comment
idVacunaPersona Int
  • @id
  • @default(autoincrement())
Yes -
idPersona String
  • -
Yes -
tipo String?
  • -
No -
dosis String?
  • -
No -
estado Int?
  • -
No -
marca String?
  • -
No -
fecha_vacuna DateTime?
  • -
No -
fecha_registro DateTime?
  • -
No -

Operations

findUnique

Find zero or one Vacuna_persona

// Get one Vacuna_persona
const vacuna_persona = await prisma.vacuna_persona.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where vacuna_personaWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Vacuna_persona

// Get one Vacuna_persona
const vacuna_persona = await prisma.vacuna_persona.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where vacuna_personaWhereInput No
orderBy vacuna_personaOrderByWithRelationInput[] | vacuna_personaOrderByWithRelationInput No
cursor vacuna_personaWhereUniqueInput No
take Int No
skip Int No
distinct Vacuna_personaScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Vacuna_persona

// Get all Vacuna_persona
const Vacuna_persona = await prisma.vacuna_persona.findMany()
// Get first 10 Vacuna_persona
const Vacuna_persona = await prisma.vacuna_persona.findMany({ take: 10 })

Input

Name Type Required
where vacuna_personaWhereInput No
orderBy vacuna_personaOrderByWithRelationInput[] | vacuna_personaOrderByWithRelationInput No
cursor vacuna_personaWhereUniqueInput No
take Int No
skip Int No
distinct Vacuna_personaScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Vacuna_persona

// Create one Vacuna_persona
const Vacuna_persona = await prisma.vacuna_persona.create({
  data: {
    // ... data to create a Vacuna_persona
  }
})

Input

Name Type Required
data vacuna_personaCreateInput | vacuna_personaUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Vacuna_persona

// Delete one Vacuna_persona
const Vacuna_persona = await prisma.vacuna_persona.delete({
  where: {
    // ... filter to delete one Vacuna_persona
  }
})

Input

Name Type Required
where vacuna_personaWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Vacuna_persona

// Update one Vacuna_persona
const vacuna_persona = await prisma.vacuna_persona.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data vacuna_personaUpdateInput | vacuna_personaUncheckedUpdateInput Yes
where vacuna_personaWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Vacuna_persona

// Delete a few Vacuna_persona
const { count } = await prisma.vacuna_persona.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where vacuna_personaWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Vacuna_persona

const { count } = await prisma.vacuna_persona.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data vacuna_personaUpdateManyMutationInput | vacuna_personaUncheckedUpdateManyInput Yes
where vacuna_personaWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Vacuna_persona

// Update or create a Vacuna_persona
const vacuna_persona = await prisma.vacuna_persona.upsert({
  create: {
    // ... data to create a Vacuna_persona
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Vacuna_persona we want to update
  }
})

Input

Name Type Required
where vacuna_personaWhereUniqueInput Yes
create vacuna_personaCreateInput | vacuna_personaUncheckedCreateInput Yes
update vacuna_personaUpdateInput | vacuna_personaUncheckedUpdateInput Yes

Output

Required: Yes
List: No

valormenu

Fields

Name Type Attributes Required Comment
idValorMenu Int
  • @id
  • @default(autoincrement())
Yes -
importe_externo Decimal?
  • -
No -
f_registro DateTime?
  • -
No -
usuario Int?
  • -
No -
estado Int?
  • -
No -
importe_interno Decimal?
  • -
No -

Operations

findUnique

Find zero or one Valormenu

// Get one Valormenu
const valormenu = await prisma.valormenu.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where valormenuWhereUniqueInput Yes

Output

Type: valormenu
Required: No
List: No

findFirst

Find first Valormenu

// Get one Valormenu
const valormenu = await prisma.valormenu.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where valormenuWhereInput No
orderBy valormenuOrderByWithRelationInput[] | valormenuOrderByWithRelationInput No
cursor valormenuWhereUniqueInput No
take Int No
skip Int No
distinct ValormenuScalarFieldEnum[] No

Output

Type: valormenu
Required: No
List: No

findMany

Find zero or more Valormenu

// Get all Valormenu
const Valormenu = await prisma.valormenu.findMany()
// Get first 10 Valormenu
const Valormenu = await prisma.valormenu.findMany({ take: 10 })

Input

Name Type Required
where valormenuWhereInput No
orderBy valormenuOrderByWithRelationInput[] | valormenuOrderByWithRelationInput No
cursor valormenuWhereUniqueInput No
take Int No
skip Int No
distinct ValormenuScalarFieldEnum[] No

Output

Type: valormenu
Required: Yes
List: Yes

create

Create one Valormenu

// Create one Valormenu
const Valormenu = await prisma.valormenu.create({
  data: {
    // ... data to create a Valormenu
  }
})

Input

Name Type Required
data valormenuCreateInput | valormenuUncheckedCreateInput Yes

Output

Type: valormenu
Required: Yes
List: No

delete

Delete one Valormenu

// Delete one Valormenu
const Valormenu = await prisma.valormenu.delete({
  where: {
    // ... filter to delete one Valormenu
  }
})

Input

Name Type Required
where valormenuWhereUniqueInput Yes

Output

Type: valormenu
Required: No
List: No

update

Update one Valormenu

// Update one Valormenu
const valormenu = await prisma.valormenu.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data valormenuUpdateInput | valormenuUncheckedUpdateInput Yes
where valormenuWhereUniqueInput Yes

Output

Type: valormenu
Required: No
List: No

deleteMany

Delete zero or more Valormenu

// Delete a few Valormenu
const { count } = await prisma.valormenu.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where valormenuWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Valormenu

const { count } = await prisma.valormenu.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data valormenuUpdateManyMutationInput | valormenuUncheckedUpdateManyInput Yes
where valormenuWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Valormenu

// Update or create a Valormenu
const valormenu = await prisma.valormenu.upsert({
  create: {
    // ... data to create a Valormenu
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Valormenu we want to update
  }
})

Input

Name Type Required
where valormenuWhereUniqueInput Yes
create valormenuCreateInput | valormenuUncheckedCreateInput Yes
update valormenuUpdateInput | valormenuUncheckedUpdateInput Yes

Output

Type: valormenu
Required: Yes
List: No

Types

Input Types

articulo_deposito_importacionWhereInput

Name Type Nullable
AND articulo_deposito_importacionWhereInput | articulo_deposito_importacionWhereInput[] No
OR articulo_deposito_importacionWhereInput[] No
NOT articulo_deposito_importacionWhereInput | articulo_deposito_importacionWhereInput[] No
id_articulo_deposito_importacion IntFilter | Int No
cod_deposito StringNullableFilter | String | Null Yes

articulo_deposito_importacionOrderByWithRelationInput

Name Type Nullable
id_articulo_deposito_importacion SortOrder No
cod_deposito SortOrder No

articulo_deposito_importacionWhereUniqueInput

Name Type Nullable
id_articulo_deposito_importacion Int No



articulosWhereInput

Name Type Nullable
AND articulosWhereInput | articulosWhereInput[] No
OR articulosWhereInput[] No
NOT articulosWhereInput | articulosWhereInput[] No
idArticulo IntFilter | Int No
nombre StringNullableFilter | String | Null Yes
categoria IntNullableFilter | Int | Null Yes
stock IntNullableFilter | Int | Null Yes
estado IntNullableFilter | Int | Null Yes
precioCompra DecimalNullableFilter | Decimal | Null Yes
precioVenta DecimalNullableFilter | Decimal | Null Yes
stockMinimo IntNullableFilter | Int | Null Yes
entrada BoolNullableFilter | Boolean | Null Yes
salida BoolNullableFilter | Boolean | Null Yes
tipo_modelo StringNullableFilter | String | Null Yes
descripcion StringNullableFilter | String | Null Yes
serie StringNullableFilter | String | Null Yes
codigo StringNullableFilter | String | Null Yes

articulosOrderByWithRelationInput

Name Type Nullable
idArticulo SortOrder No
nombre SortOrder No
categoria SortOrder No
stock SortOrder No
estado SortOrder No
precioCompra SortOrder No
precioVenta SortOrder No
stockMinimo SortOrder No
entrada SortOrder No
salida SortOrder No
tipo_modelo SortOrder No
descripcion SortOrder No
serie SortOrder No
codigo SortOrder No

articulosWhereUniqueInput

Name Type Nullable
idArticulo Int No

articulosOrderByWithAggregationInput

Name Type Nullable
idArticulo SortOrder No
nombre SortOrder No
categoria SortOrder No
stock SortOrder No
estado SortOrder No
precioCompra SortOrder No
precioVenta SortOrder No
stockMinimo SortOrder No
entrada SortOrder No
salida SortOrder No
tipo_modelo SortOrder No
descripcion SortOrder No
serie SortOrder No
codigo SortOrder No
_count articulosCountOrderByAggregateInput No
_avg articulosAvgOrderByAggregateInput No
_max articulosMaxOrderByAggregateInput No
_min articulosMinOrderByAggregateInput No
_sum articulosSumOrderByAggregateInput No

articulosScalarWhereWithAggregatesInput

Name Type Nullable
AND articulosScalarWhereWithAggregatesInput | articulosScalarWhereWithAggregatesInput[] No
OR articulosScalarWhereWithAggregatesInput[] No
NOT articulosScalarWhereWithAggregatesInput | articulosScalarWhereWithAggregatesInput[] No
idArticulo IntWithAggregatesFilter | Int No
nombre StringNullableWithAggregatesFilter | String | Null Yes
categoria IntNullableWithAggregatesFilter | Int | Null Yes
stock IntNullableWithAggregatesFilter | Int | Null Yes
estado IntNullableWithAggregatesFilter | Int | Null Yes
precioCompra DecimalNullableWithAggregatesFilter | Decimal | Null Yes
precioVenta DecimalNullableWithAggregatesFilter | Decimal | Null Yes
stockMinimo IntNullableWithAggregatesFilter | Int | Null Yes
entrada BoolNullableWithAggregatesFilter | Boolean | Null Yes
salida BoolNullableWithAggregatesFilter | Boolean | Null Yes
tipo_modelo StringNullableWithAggregatesFilter | String | Null Yes
descripcion StringNullableWithAggregatesFilter | String | Null Yes
serie StringNullableWithAggregatesFilter | String | Null Yes
codigo StringNullableWithAggregatesFilter | String | Null Yes

articulos_laboratorioWhereInput

Name Type Nullable
AND articulos_laboratorioWhereInput | articulos_laboratorioWhereInput[] No
OR articulos_laboratorioWhereInput[] No
NOT articulos_laboratorioWhereInput | articulos_laboratorioWhereInput[] No
idArticuloLaboratorio IntFilter | Int No
articulo IntFilter | Int No
maquina IntFilter | Int No
cantidad IntFilter | Int No
usuario IntNullableFilter | Int | Null Yes
fecha_hora DateTimeNullableFilter | DateTime | Null Yes
asignado IntNullableFilter | Int | Null Yes
estado IntNullableFilter | Int | Null Yes
reparados IntNullableFilter | Int | Null Yes

articulos_laboratorioOrderByWithRelationInput

Name Type Nullable
idArticuloLaboratorio SortOrder No
articulo SortOrder No
maquina SortOrder No
cantidad SortOrder No
usuario SortOrder No
fecha_hora SortOrder No
asignado SortOrder No
estado SortOrder No
reparados SortOrder No

articulos_laboratorioWhereUniqueInput

Name Type Nullable
idArticuloLaboratorio Int No

articulos_laboratorioOrderByWithAggregationInput

Name Type Nullable
idArticuloLaboratorio SortOrder No
articulo SortOrder No
maquina SortOrder No
cantidad SortOrder No
usuario SortOrder No
fecha_hora SortOrder No
asignado SortOrder No
estado SortOrder No
reparados SortOrder No
_count articulos_laboratorioCountOrderByAggregateInput No
_avg articulos_laboratorioAvgOrderByAggregateInput No
_max articulos_laboratorioMaxOrderByAggregateInput No
_min articulos_laboratorioMinOrderByAggregateInput No
_sum articulos_laboratorioSumOrderByAggregateInput No

articulos_laboratorioScalarWhereWithAggregatesInput

Name Type Nullable
AND articulos_laboratorioScalarWhereWithAggregatesInput | articulos_laboratorioScalarWhereWithAggregatesInput[] No
OR articulos_laboratorioScalarWhereWithAggregatesInput[] No
NOT articulos_laboratorioScalarWhereWithAggregatesInput | articulos_laboratorioScalarWhereWithAggregatesInput[] No
idArticuloLaboratorio IntWithAggregatesFilter | Int No
articulo IntWithAggregatesFilter | Int No
maquina IntWithAggregatesFilter | Int No
cantidad IntWithAggregatesFilter | Int No
usuario IntNullableWithAggregatesFilter | Int | Null Yes
fecha_hora DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
asignado IntNullableWithAggregatesFilter | Int | Null Yes
estado IntNullableWithAggregatesFilter | Int | Null Yes
reparados IntNullableWithAggregatesFilter | Int | Null Yes

articulos_maquinasWhereInput

Name Type Nullable
AND articulos_maquinasWhereInput | articulos_maquinasWhereInput[] No
OR articulos_maquinasWhereInput[] No
NOT articulos_maquinasWhereInput | articulos_maquinasWhereInput[] No
idArticuloMaquina IntFilter | Int No
maquina IntFilter | Int No
articulo IntFilter | Int No
cantidad IntFilter | Int No
usuario IntNullableFilter | Int | Null Yes
fecha_hora DateTimeNullableFilter | DateTime | Null Yes
estado IntNullableFilter | Int | Null Yes
fecha_salida DateTimeNullableFilter | DateTime | Null Yes
usuario_salida IntNullableFilter | Int | Null Yes

articulos_maquinasOrderByWithRelationInput

Name Type Nullable
idArticuloMaquina SortOrder No
maquina SortOrder No
articulo SortOrder No
cantidad SortOrder No
usuario SortOrder No
fecha_hora SortOrder No
estado SortOrder No
fecha_salida SortOrder No
usuario_salida SortOrder No

articulos_maquinasWhereUniqueInput

Name Type Nullable
idArticuloMaquina Int No

articulos_maquinasOrderByWithAggregationInput

Name Type Nullable
idArticuloMaquina SortOrder No
maquina SortOrder No
articulo SortOrder No
cantidad SortOrder No
usuario SortOrder No
fecha_hora SortOrder No
estado SortOrder No
fecha_salida SortOrder No
usuario_salida SortOrder No
_count articulos_maquinasCountOrderByAggregateInput No
_avg articulos_maquinasAvgOrderByAggregateInput No
_max articulos_maquinasMaxOrderByAggregateInput No
_min articulos_maquinasMinOrderByAggregateInput No
_sum articulos_maquinasSumOrderByAggregateInput No

articulos_maquinasScalarWhereWithAggregatesInput

Name Type Nullable
AND articulos_maquinasScalarWhereWithAggregatesInput | articulos_maquinasScalarWhereWithAggregatesInput[] No
OR articulos_maquinasScalarWhereWithAggregatesInput[] No
NOT articulos_maquinasScalarWhereWithAggregatesInput | articulos_maquinasScalarWhereWithAggregatesInput[] No
idArticuloMaquina IntWithAggregatesFilter | Int No
maquina IntWithAggregatesFilter | Int No
articulo IntWithAggregatesFilter | Int No
cantidad IntWithAggregatesFilter | Int No
usuario IntNullableWithAggregatesFilter | Int | Null Yes
fecha_hora DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
estado IntNullableWithAggregatesFilter | Int | Null Yes
fecha_salida DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
usuario_salida IntNullableWithAggregatesFilter | Int | Null Yes

articulos_saveWhereInput

Name Type Nullable
AND articulos_saveWhereInput | articulos_saveWhereInput[] No
OR articulos_saveWhereInput[] No
NOT articulos_saveWhereInput | articulos_saveWhereInput[] No
nombre StringFilter | String No
tipo_modelo StringNullableFilter | String | Null Yes

articulos_saveOrderByWithRelationInput

Name Type Nullable
nombre SortOrder No
tipo_modelo SortOrder No

articulos_saveWhereUniqueInput

Name Type Nullable
nombre String No

articulos_saveOrderByWithAggregationInput

Name Type Nullable
nombre SortOrder No
tipo_modelo SortOrder No
_count articulos_saveCountOrderByAggregateInput No
_max articulos_saveMaxOrderByAggregateInput No
_min articulos_saveMinOrderByAggregateInput No


calendariomenuWhereInput

Name Type Nullable
AND calendariomenuWhereInput | calendariomenuWhereInput[] No
OR calendariomenuWhereInput[] No
NOT calendariomenuWhereInput | calendariomenuWhereInput[] No
idCalendarioMenu IntFilter | Int No
legajo StringNullableFilter | String | Null Yes
persona_str StringNullableFilter | String | Null Yes
title StringNullableFilter | String | Null Yes
descripcion StringNullableFilter | String | Null Yes
start DateTimeNullableFilter | DateTime | Null Yes
color StringNullableFilter | String | Null Yes
textColor StringNullableFilter | String | Null Yes
end DateTimeNullableFilter | DateTime | Null Yes
idMenu IntNullableFilter | Int | Null Yes
estado IntNullableFilter | Int | Null Yes
f_registro DateTimeNullableFilter | DateTime | Null Yes
idMenuBingo IntNullableFilter | Int | Null Yes
turno StringNullableFilter | String | Null Yes

calendariomenuOrderByWithRelationInput

Name Type Nullable
idCalendarioMenu SortOrder No
legajo SortOrder No
persona_str SortOrder No
title SortOrder No
descripcion SortOrder No
start SortOrder No
color SortOrder No
textColor SortOrder No
end SortOrder No
idMenu SortOrder No
estado SortOrder No
f_registro SortOrder No
idMenuBingo SortOrder No
turno SortOrder No

calendariomenuWhereUniqueInput

Name Type Nullable
idCalendarioMenu Int No

calendariomenuOrderByWithAggregationInput

Name Type Nullable
idCalendarioMenu SortOrder No
legajo SortOrder No
persona_str SortOrder No
title SortOrder No
descripcion SortOrder No
start SortOrder No
color SortOrder No
textColor SortOrder No
end SortOrder No
idMenu SortOrder No
estado SortOrder No
f_registro SortOrder No
idMenuBingo SortOrder No
turno SortOrder No
_count calendariomenuCountOrderByAggregateInput No
_avg calendariomenuAvgOrderByAggregateInput No
_max calendariomenuMaxOrderByAggregateInput No
_min calendariomenuMinOrderByAggregateInput No
_sum calendariomenuSumOrderByAggregateInput No

calendariomenuScalarWhereWithAggregatesInput

Name Type Nullable
AND calendariomenuScalarWhereWithAggregatesInput | calendariomenuScalarWhereWithAggregatesInput[] No
OR calendariomenuScalarWhereWithAggregatesInput[] No
NOT calendariomenuScalarWhereWithAggregatesInput | calendariomenuScalarWhereWithAggregatesInput[] No
idCalendarioMenu IntWithAggregatesFilter | Int No
legajo StringNullableWithAggregatesFilter | String | Null Yes
persona_str StringNullableWithAggregatesFilter | String | Null Yes
title StringNullableWithAggregatesFilter | String | Null Yes
descripcion StringNullableWithAggregatesFilter | String | Null Yes
start DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
color StringNullableWithAggregatesFilter | String | Null Yes
textColor StringNullableWithAggregatesFilter | String | Null Yes
end DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
idMenu IntNullableWithAggregatesFilter | Int | Null Yes
estado IntNullableWithAggregatesFilter | Int | Null Yes
f_registro DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
idMenuBingo IntNullableWithAggregatesFilter | Int | Null Yes
turno StringNullableWithAggregatesFilter | String | Null Yes

calendariomenu_oldWhereInput

Name Type Nullable
AND calendariomenu_oldWhereInput | calendariomenu_oldWhereInput[] No
OR calendariomenu_oldWhereInput[] No
NOT calendariomenu_oldWhereInput | calendariomenu_oldWhereInput[] No
idCalendarioMenu IntFilter | Int No
legajo StringNullableFilter | String | Null Yes
title StringNullableFilter | String | Null Yes
descripcion StringNullableFilter | String | Null Yes
start DateTimeNullableFilter | DateTime | Null Yes
color StringNullableFilter | String | Null Yes
textColor StringNullableFilter | String | Null Yes
end DateTimeNullableFilter | DateTime | Null Yes
idMenu IntNullableFilter | Int | Null Yes
estado IntNullableFilter | Int | Null Yes
f_registro DateTimeNullableFilter | DateTime | Null Yes

calendariomenu_oldOrderByWithRelationInput

Name Type Nullable
idCalendarioMenu SortOrder No
legajo SortOrder No
title SortOrder No
descripcion SortOrder No
start SortOrder No
color SortOrder No
textColor SortOrder No
end SortOrder No
idMenu SortOrder No
estado SortOrder No
f_registro SortOrder No

calendariomenu_oldWhereUniqueInput

Name Type Nullable
idCalendarioMenu Int No

calendariomenu_oldOrderByWithAggregationInput

Name Type Nullable
idCalendarioMenu SortOrder No
legajo SortOrder No
title SortOrder No
descripcion SortOrder No
start SortOrder No
color SortOrder No
textColor SortOrder No
end SortOrder No
idMenu SortOrder No
estado SortOrder No
f_registro SortOrder No
_count calendariomenu_oldCountOrderByAggregateInput No
_avg calendariomenu_oldAvgOrderByAggregateInput No
_max calendariomenu_oldMaxOrderByAggregateInput No
_min calendariomenu_oldMinOrderByAggregateInput No
_sum calendariomenu_oldSumOrderByAggregateInput No

calendariomenu_oldScalarWhereWithAggregatesInput

Name Type Nullable
AND calendariomenu_oldScalarWhereWithAggregatesInput | calendariomenu_oldScalarWhereWithAggregatesInput[] No
OR calendariomenu_oldScalarWhereWithAggregatesInput[] No
NOT calendariomenu_oldScalarWhereWithAggregatesInput | calendariomenu_oldScalarWhereWithAggregatesInput[] No
idCalendarioMenu IntWithAggregatesFilter | Int No
legajo StringNullableWithAggregatesFilter | String | Null Yes
title StringNullableWithAggregatesFilter | String | Null Yes
descripcion StringNullableWithAggregatesFilter | String | Null Yes
start DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
color StringNullableWithAggregatesFilter | String | Null Yes
textColor StringNullableWithAggregatesFilter | String | Null Yes
end DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
idMenu IntNullableWithAggregatesFilter | Int | Null Yes
estado IntNullableWithAggregatesFilter | Int | Null Yes
f_registro DateTimeNullableWithAggregatesFilter | DateTime | Null Yes

capacitacionWhereInput

Name Type Nullable
AND capacitacionWhereInput | capacitacionWhereInput[] No
OR capacitacionWhereInput[] No
NOT capacitacionWhereInput | capacitacionWhereInput[] No
idCapacitacion IntFilter | Int No
descripcion StringNullableFilter | String | Null Yes
f_inicio DateTimeNullableFilter | DateTime | Null Yes
f_fin DateTimeNullableFilter | DateTime | Null Yes
estado IntNullableFilter | Int | Null Yes
tema StringNullableFilter | String | Null Yes
f_registro DateTimeNullableFilter | DateTime | Null Yes
usuario IntNullableFilter | Int | Null Yes
capacitador StringNullableFilter | String | Null Yes
cupo IntNullableFilter | Int | Null Yes
modalidad StringNullableFilter | String | Null Yes
evaluacion StringNullableFilter | String | Null Yes
institucion StringNullableFilter | String | Null Yes
tipo StringNullableFilter | String | Null Yes
obligatorio StringNullableFilter | String | Null Yes
sector StringNullableFilter | String | Null Yes

capacitacionOrderByWithRelationInput

Name Type Nullable
idCapacitacion SortOrder No
descripcion SortOrder No
f_inicio SortOrder No
f_fin SortOrder No
estado SortOrder No
tema SortOrder No
f_registro SortOrder No
usuario SortOrder No
capacitador SortOrder No
cupo SortOrder No
modalidad SortOrder No
evaluacion SortOrder No
institucion SortOrder No
tipo SortOrder No
obligatorio SortOrder No
sector SortOrder No

capacitacionWhereUniqueInput

Name Type Nullable
idCapacitacion Int No

capacitacionOrderByWithAggregationInput

Name Type Nullable
idCapacitacion SortOrder No
descripcion SortOrder No
f_inicio SortOrder No
f_fin SortOrder No
estado SortOrder No
tema SortOrder No
f_registro SortOrder No
usuario SortOrder No
capacitador SortOrder No
cupo SortOrder No
modalidad SortOrder No
evaluacion SortOrder No
institucion SortOrder No
tipo SortOrder No
obligatorio SortOrder No
sector SortOrder No
_count capacitacionCountOrderByAggregateInput No
_avg capacitacionAvgOrderByAggregateInput No
_max capacitacionMaxOrderByAggregateInput No
_min capacitacionMinOrderByAggregateInput No
_sum capacitacionSumOrderByAggregateInput No

capacitacionScalarWhereWithAggregatesInput

Name Type Nullable
AND capacitacionScalarWhereWithAggregatesInput | capacitacionScalarWhereWithAggregatesInput[] No
OR capacitacionScalarWhereWithAggregatesInput[] No
NOT capacitacionScalarWhereWithAggregatesInput | capacitacionScalarWhereWithAggregatesInput[] No
idCapacitacion IntWithAggregatesFilter | Int No
descripcion StringNullableWithAggregatesFilter | String | Null Yes
f_inicio DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
f_fin DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
estado IntNullableWithAggregatesFilter | Int | Null Yes
tema StringNullableWithAggregatesFilter | String | Null Yes
f_registro DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
usuario IntNullableWithAggregatesFilter | Int | Null Yes
capacitador StringNullableWithAggregatesFilter | String | Null Yes
cupo IntNullableWithAggregatesFilter | Int | Null Yes
modalidad StringNullableWithAggregatesFilter | String | Null Yes
evaluacion StringNullableWithAggregatesFilter | String | Null Yes
institucion StringNullableWithAggregatesFilter | String | Null Yes
tipo StringNullableWithAggregatesFilter | String | Null Yes
obligatorio StringNullableWithAggregatesFilter | String | Null Yes
sector StringNullableWithAggregatesFilter | String | Null Yes

capacitacion_personaWhereInput

Name Type Nullable
AND capacitacion_personaWhereInput | capacitacion_personaWhereInput[] No
OR capacitacion_personaWhereInput[] No
NOT capacitacion_personaWhereInput | capacitacion_personaWhereInput[] No
idCapacitacionPersona IntFilter | Int No
idCapacitacion IntFilter | Int No
idPersona IntFilter | Int No
estado IntFilter | Int No
fecha_registro DateTimeNullableFilter | DateTime | Null Yes
usuario IntNullableFilter | Int | Null Yes

capacitacion_personaOrderByWithRelationInput

Name Type Nullable
idCapacitacionPersona SortOrder No
idCapacitacion SortOrder No
idPersona SortOrder No
estado SortOrder No
fecha_registro SortOrder No
usuario SortOrder No

capacitacion_personaWhereUniqueInput

Name Type Nullable
idCapacitacionPersona Int No

capacitacion_personaOrderByWithAggregationInput

Name Type Nullable
idCapacitacionPersona SortOrder No
idCapacitacion SortOrder No
idPersona SortOrder No
estado SortOrder No
fecha_registro SortOrder No
usuario SortOrder No
_count capacitacion_personaCountOrderByAggregateInput No
_avg capacitacion_personaAvgOrderByAggregateInput No
_max capacitacion_personaMaxOrderByAggregateInput No
_min capacitacion_personaMinOrderByAggregateInput No
_sum capacitacion_personaSumOrderByAggregateInput No


codificadosWhereInput

Name Type Nullable
AND codificadosWhereInput | codificadosWhereInput[] No
OR codificadosWhereInput[] No
NOT codificadosWhereInput | codificadosWhereInput[] No
gen1 StringFilter | String No
atr1 StringFilter | String No
atr2 StringFilter | String No
atr3 StringFilter | String No
gen1desc StringNullableFilter | String | Null Yes
atr1desc StringNullableFilter | String | Null Yes
atr2desc StringNullableFilter | String | Null Yes
atr3desc StringNullableFilter | String | Null Yes

codificadosOrderByWithRelationInput

Name Type Nullable
gen1 SortOrder No
atr1 SortOrder No
atr2 SortOrder No
atr3 SortOrder No
gen1desc SortOrder No
atr1desc SortOrder No
atr2desc SortOrder No
atr3desc SortOrder No

codificadosWhereUniqueInput

Name Type Nullable
gen1_atr1_atr2_atr3 codificadosGen1Atr1Atr2Atr3CompoundUniqueInput No

codificadosOrderByWithAggregationInput

Name Type Nullable
gen1 SortOrder No
atr1 SortOrder No
atr2 SortOrder No
atr3 SortOrder No
gen1desc SortOrder No
atr1desc SortOrder No
atr2desc SortOrder No
atr3desc SortOrder No
_count codificadosCountOrderByAggregateInput No
_max codificadosMaxOrderByAggregateInput No
_min codificadosMinOrderByAggregateInput No


conexion_bejermanWhereInput

Name Type Nullable
AND conexion_bejermanWhereInput | conexion_bejermanWhereInput[] No
OR conexion_bejermanWhereInput[] No
NOT conexion_bejermanWhereInput | conexion_bejermanWhereInput[] No
idConexionBejerman IntFilter | Int No
username StringNullableFilter | String | Null Yes
pass StringNullableFilter | String | Null Yes
estado IntNullableFilter | Int | Null Yes
usuario IntNullableFilter | Int | Null Yes

conexion_bejermanOrderByWithRelationInput

Name Type Nullable
idConexionBejerman SortOrder No
username SortOrder No
pass SortOrder No
estado SortOrder No
usuario SortOrder No

conexion_bejermanWhereUniqueInput

Name Type Nullable
idConexionBejerman Int No

conexion_bejermanOrderByWithAggregationInput

Name Type Nullable
idConexionBejerman SortOrder No
username SortOrder No
pass SortOrder No
estado SortOrder No
usuario SortOrder No
_count conexion_bejermanCountOrderByAggregateInput No
_avg conexion_bejermanAvgOrderByAggregateInput No
_max conexion_bejermanMaxOrderByAggregateInput No
_min conexion_bejermanMinOrderByAggregateInput No
_sum conexion_bejermanSumOrderByAggregateInput No


consolaWhereInput

Name Type Nullable
AND consolaWhereInput | consolaWhereInput[] No
OR consolaWhereInput[] No
NOT consolaWhereInput | consolaWhereInput[] No
idConsola IntFilter | Int No
usuario IntFilter | Int No
accion_id IntFilter | Int No
accion StringFilter | String No
fecha_registro DateTimeFilter | DateTime No
modulo IntFilter | Int No

consolaOrderByWithRelationInput

Name Type Nullable
idConsola SortOrder No
usuario SortOrder No
accion_id SortOrder No
accion SortOrder No
fecha_registro SortOrder No
modulo SortOrder No

consolaWhereUniqueInput

Name Type Nullable
idConsola Int No

consolaOrderByWithAggregationInput

Name Type Nullable
idConsola SortOrder No
usuario SortOrder No
accion_id SortOrder No
accion SortOrder No
fecha_registro SortOrder No
modulo SortOrder No
_count consolaCountOrderByAggregateInput No
_avg consolaAvgOrderByAggregateInput No
_max consolaMaxOrderByAggregateInput No
_min consolaMinOrderByAggregateInput No
_sum consolaSumOrderByAggregateInput No


desempenoWhereInput

Name Type Nullable
AND desempenoWhereInput | desempenoWhereInput[] No
OR desempenoWhereInput[] No
NOT desempenoWhereInput | desempenoWhereInput[] No
idDesempeno IntFilter | Int No
idPersona IntFilter | Int No
usuario IntFilter | Int No
f_registro DateTimeFilter | DateTime No
estado IntNullableFilter | Int | Null Yes
con_tecnico StringNullableFilter | String | Null Yes
con_operativo StringNullableFilter | String | Null Yes
precencia_prolijidad StringNullableFilter | String | Null Yes
puntualidad StringNullableFilter | String | Null Yes
cumplimiento_modalidad_trabajo StringNullableFilter | String | Null Yes
vocabulario StringNullableFilter | String | Null Yes
trabajo_equipo StringNullableFilter | String | Null Yes
capacidad_organizacion StringNullableFilter | String | Null Yes
vocacion_servicio StringNullableFilter | String | Null Yes
capacidad_analisis StringNullableFilter | String | Null Yes
obs StringNullableFilter | String | Null Yes
cumplimiento_normas StringNullableFilter | String | Null Yes

desempenoOrderByWithRelationInput

Name Type Nullable
idDesempeno SortOrder No
idPersona SortOrder No
usuario SortOrder No
f_registro SortOrder No
estado SortOrder No
con_tecnico SortOrder No
con_operativo SortOrder No
precencia_prolijidad SortOrder No
puntualidad SortOrder No
cumplimiento_modalidad_trabajo SortOrder No
vocabulario SortOrder No
trabajo_equipo SortOrder No
capacidad_organizacion SortOrder No
vocacion_servicio SortOrder No
capacidad_analisis SortOrder No
obs SortOrder No
cumplimiento_normas SortOrder No

desempenoWhereUniqueInput

Name Type Nullable
idDesempeno Int No

desempenoOrderByWithAggregationInput

Name Type Nullable
idDesempeno SortOrder No
idPersona SortOrder No
usuario SortOrder No
f_registro SortOrder No
estado SortOrder No
con_tecnico SortOrder No
con_operativo SortOrder No
precencia_prolijidad SortOrder No
puntualidad SortOrder No
cumplimiento_modalidad_trabajo SortOrder No
vocabulario SortOrder No
trabajo_equipo SortOrder No
capacidad_organizacion SortOrder No
vocacion_servicio SortOrder No
capacidad_analisis SortOrder No
obs SortOrder No
cumplimiento_normas SortOrder No
_count desempenoCountOrderByAggregateInput No
_avg desempenoAvgOrderByAggregateInput No
_max desempenoMaxOrderByAggregateInput No
_min desempenoMinOrderByAggregateInput No
_sum desempenoSumOrderByAggregateInput No

desempenoScalarWhereWithAggregatesInput

Name Type Nullable
AND desempenoScalarWhereWithAggregatesInput | desempenoScalarWhereWithAggregatesInput[] No
OR desempenoScalarWhereWithAggregatesInput[] No
NOT desempenoScalarWhereWithAggregatesInput | desempenoScalarWhereWithAggregatesInput[] No
idDesempeno IntWithAggregatesFilter | Int No
idPersona IntWithAggregatesFilter | Int No
usuario IntWithAggregatesFilter | Int No
f_registro DateTimeWithAggregatesFilter | DateTime No
estado IntNullableWithAggregatesFilter | Int | Null Yes
con_tecnico StringNullableWithAggregatesFilter | String | Null Yes
con_operativo StringNullableWithAggregatesFilter | String | Null Yes
precencia_prolijidad StringNullableWithAggregatesFilter | String | Null Yes
puntualidad StringNullableWithAggregatesFilter | String | Null Yes
cumplimiento_modalidad_trabajo StringNullableWithAggregatesFilter | String | Null Yes
vocabulario StringNullableWithAggregatesFilter | String | Null Yes
trabajo_equipo StringNullableWithAggregatesFilter | String | Null Yes
capacidad_organizacion StringNullableWithAggregatesFilter | String | Null Yes
vocacion_servicio StringNullableWithAggregatesFilter | String | Null Yes
capacidad_analisis StringNullableWithAggregatesFilter | String | Null Yes
obs StringNullableWithAggregatesFilter | String | Null Yes
cumplimiento_normas StringNullableWithAggregatesFilter | String | Null Yes

desempeno_evolWhereInput

Name Type Nullable
AND desempeno_evolWhereInput | desempeno_evolWhereInput[] No
OR desempeno_evolWhereInput[] No
NOT desempeno_evolWhereInput | desempeno_evolWhereInput[] No
idDesempenoEvol IntFilter | Int No
idEvaluador IntNullableFilter | Int | Null Yes
usuario IntNullableFilter | Int | Null Yes
idPersona IntNullableFilter | Int | Null Yes
f_desempeno DateTimeNullableFilter | DateTime | Null Yes
escucha IntNullableFilter | Int | Null Yes
ayuda_cliente IntNullableFilter | Int | Null Yes
empatia IntNullableFilter | Int | Null Yes
comparte_informacion IntNullableFilter | Int | Null Yes
colabora_pares IntNullableFilter | Int | Null Yes
trabajo_positivo IntNullableFilter | Int | Null Yes
cumple_objetivos IntNullableFilter | Int | Null Yes
acepta_sugerencias IntNullableFilter | Int | Null Yes
situacion_adversas IntNullableFilter | Int | Null Yes
asistencia_puntualidad IntNullableFilter | Int | Null Yes
imagen IntNullableFilter | Int | Null Yes
limpieza_instalaciones IntNullableFilter | Int | Null Yes
limpieza_vestuarios IntNullableFilter | Int | Null Yes
minimiza_perdidas_roturas IntNullableFilter | Int | Null Yes
objetivos IntNullableFilter | Int | Null Yes
cumplimientos_sector IntNullableFilter | Int | Null Yes
estado IntNullableFilter | Int | Null Yes
conocimientos_sector IntNullableFilter | Int | Null Yes
obs StringNullableFilter | String | Null Yes

desempeno_evolOrderByWithRelationInput

Name Type Nullable
idDesempenoEvol SortOrder No
idEvaluador SortOrder No
usuario SortOrder No
idPersona SortOrder No
f_desempeno SortOrder No
escucha SortOrder No
ayuda_cliente SortOrder No
empatia SortOrder No
comparte_informacion SortOrder No
colabora_pares SortOrder No
trabajo_positivo SortOrder No
cumple_objetivos SortOrder No
acepta_sugerencias SortOrder No
situacion_adversas SortOrder No
asistencia_puntualidad SortOrder No
imagen SortOrder No
limpieza_instalaciones SortOrder No
limpieza_vestuarios SortOrder No
minimiza_perdidas_roturas SortOrder No
objetivos SortOrder No
cumplimientos_sector SortOrder No
estado SortOrder No
conocimientos_sector SortOrder No
obs SortOrder No

desempeno_evolWhereUniqueInput

Name Type Nullable
idDesempenoEvol Int No

desempeno_evolOrderByWithAggregationInput

Name Type Nullable
idDesempenoEvol SortOrder No
idEvaluador SortOrder No
usuario SortOrder No
idPersona SortOrder No
f_desempeno SortOrder No
escucha SortOrder No
ayuda_cliente SortOrder No
empatia SortOrder No
comparte_informacion SortOrder No
colabora_pares SortOrder No
trabajo_positivo SortOrder No
cumple_objetivos SortOrder No
acepta_sugerencias SortOrder No
situacion_adversas SortOrder No
asistencia_puntualidad SortOrder No
imagen SortOrder No
limpieza_instalaciones SortOrder No
limpieza_vestuarios SortOrder No
minimiza_perdidas_roturas SortOrder No
objetivos SortOrder No
cumplimientos_sector SortOrder No
estado SortOrder No
conocimientos_sector SortOrder No
obs SortOrder No
_count desempeno_evolCountOrderByAggregateInput No
_avg desempeno_evolAvgOrderByAggregateInput No
_max desempeno_evolMaxOrderByAggregateInput No
_min desempeno_evolMinOrderByAggregateInput No
_sum desempeno_evolSumOrderByAggregateInput No

desempeno_evolScalarWhereWithAggregatesInput

Name Type Nullable
AND desempeno_evolScalarWhereWithAggregatesInput | desempeno_evolScalarWhereWithAggregatesInput[] No
OR desempeno_evolScalarWhereWithAggregatesInput[] No
NOT desempeno_evolScalarWhereWithAggregatesInput | desempeno_evolScalarWhereWithAggregatesInput[] No
idDesempenoEvol IntWithAggregatesFilter | Int No
idEvaluador IntNullableWithAggregatesFilter | Int | Null Yes
usuario IntNullableWithAggregatesFilter | Int | Null Yes
idPersona IntNullableWithAggregatesFilter | Int | Null Yes
f_desempeno DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
escucha IntNullableWithAggregatesFilter | Int | Null Yes
ayuda_cliente IntNullableWithAggregatesFilter | Int | Null Yes
empatia IntNullableWithAggregatesFilter | Int | Null Yes
comparte_informacion IntNullableWithAggregatesFilter | Int | Null Yes
colabora_pares IntNullableWithAggregatesFilter | Int | Null Yes
trabajo_positivo IntNullableWithAggregatesFilter | Int | Null Yes
cumple_objetivos IntNullableWithAggregatesFilter | Int | Null Yes
acepta_sugerencias IntNullableWithAggregatesFilter | Int | Null Yes
situacion_adversas IntNullableWithAggregatesFilter | Int | Null Yes
asistencia_puntualidad IntNullableWithAggregatesFilter | Int | Null Yes
imagen IntNullableWithAggregatesFilter | Int | Null Yes
limpieza_instalaciones IntNullableWithAggregatesFilter | Int | Null Yes
limpieza_vestuarios IntNullableWithAggregatesFilter | Int | Null Yes
minimiza_perdidas_roturas IntNullableWithAggregatesFilter | Int | Null Yes
objetivos IntNullableWithAggregatesFilter | Int | Null Yes
cumplimientos_sector IntNullableWithAggregatesFilter | Int | Null Yes
estado IntNullableWithAggregatesFilter | Int | Null Yes
conocimientos_sector IntNullableWithAggregatesFilter | Int | Null Yes
obs StringNullableWithAggregatesFilter | String | Null Yes

documentosWhereInput

Name Type Nullable
AND documentosWhereInput | documentosWhereInput[] No
OR documentosWhereInput[] No
NOT documentosWhereInput | documentosWhereInput[] No
idDocumentos IntFilter | Int No
documento StringNullableFilter | String | Null Yes
descripcion StringNullableFilter | String | Null Yes
file StringNullableFilter | String | Null Yes
path StringNullableFilter | String | Null Yes
url StringNullableFilter | String | Null Yes
fecha DateTimeNullableFilter | DateTime | Null Yes
categoria StringNullableFilter | String | Null Yes
tipo StringNullableFilter | String | Null Yes
size StringNullableFilter | String | Null Yes
sector IntNullableFilter | Int | Null Yes
referencia IntNullableFilter | Int | Null Yes
funcionalidad StringNullableFilter | String | Null Yes
estado StringNullableFilter | String | Null Yes

documentosOrderByWithRelationInput

Name Type Nullable
idDocumentos SortOrder No
documento SortOrder No
descripcion SortOrder No
file SortOrder No
path SortOrder No
url SortOrder No
fecha SortOrder No
categoria SortOrder No
tipo SortOrder No
size SortOrder No
sector SortOrder No
referencia SortOrder No
funcionalidad SortOrder No
estado SortOrder No

documentosWhereUniqueInput

Name Type Nullable
idDocumentos Int No

documentosOrderByWithAggregationInput

Name Type Nullable
idDocumentos SortOrder No
documento SortOrder No
descripcion SortOrder No
file SortOrder No
path SortOrder No
url SortOrder No
fecha SortOrder No
categoria SortOrder No
tipo SortOrder No
size SortOrder No
sector SortOrder No
referencia SortOrder No
funcionalidad SortOrder No
estado SortOrder No
_count documentosCountOrderByAggregateInput No
_avg documentosAvgOrderByAggregateInput No
_max documentosMaxOrderByAggregateInput No
_min documentosMinOrderByAggregateInput No
_sum documentosSumOrderByAggregateInput No

documentosScalarWhereWithAggregatesInput

Name Type Nullable
AND documentosScalarWhereWithAggregatesInput | documentosScalarWhereWithAggregatesInput[] No
OR documentosScalarWhereWithAggregatesInput[] No
NOT documentosScalarWhereWithAggregatesInput | documentosScalarWhereWithAggregatesInput[] No
idDocumentos IntWithAggregatesFilter | Int No
documento StringNullableWithAggregatesFilter | String | Null Yes
descripcion StringNullableWithAggregatesFilter | String | Null Yes
file StringNullableWithAggregatesFilter | String | Null Yes
path StringNullableWithAggregatesFilter | String | Null Yes
url StringNullableWithAggregatesFilter | String | Null Yes
fecha DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
categoria StringNullableWithAggregatesFilter | String | Null Yes
tipo StringNullableWithAggregatesFilter | String | Null Yes
size StringNullableWithAggregatesFilter | String | Null Yes
sector IntNullableWithAggregatesFilter | Int | Null Yes
referencia IntNullableWithAggregatesFilter | Int | Null Yes
funcionalidad StringNullableWithAggregatesFilter | String | Null Yes
estado StringNullableWithAggregatesFilter | String | Null Yes

estudioWhereInput

Name Type Nullable
AND estudioWhereInput | estudioWhereInput[] No
OR estudioWhereInput[] No
NOT estudioWhereInput | estudioWhereInput[] No
idEstudio IntFilter | Int No
institucion IntNullableFilter | Int | Null Yes
titulo StringNullableFilter | String | Null Yes
fecha DateTimeNullableFilter | DateTime | Null Yes
estado IntNullableFilter | Int | Null Yes
tipo StringNullableFilter | String | Null Yes

estudioOrderByWithRelationInput

Name Type Nullable
idEstudio SortOrder No
institucion SortOrder No
titulo SortOrder No
fecha SortOrder No
estado SortOrder No
tipo SortOrder No

estudioWhereUniqueInput

Name Type Nullable
idEstudio Int No

estudioOrderByWithAggregationInput

Name Type Nullable
idEstudio SortOrder No
institucion SortOrder No
titulo SortOrder No
fecha SortOrder No
estado SortOrder No
tipo SortOrder No
_count estudioCountOrderByAggregateInput No
_avg estudioAvgOrderByAggregateInput No
_max estudioMaxOrderByAggregateInput No
_min estudioMinOrderByAggregateInput No
_sum estudioSumOrderByAggregateInput No


estudio_personaWhereInput

Name Type Nullable
AND estudio_personaWhereInput | estudio_personaWhereInput[] No
OR estudio_personaWhereInput[] No
NOT estudio_personaWhereInput | estudio_personaWhereInput[] No
idEstudio_persona IntFilter | Int No
idEstudio IntNullableFilter | Int | Null Yes
idPersona IntNullableFilter | Int | Null Yes
descripcion StringNullableFilter | String | Null Yes
fecha_registro DateTimeNullableFilter | DateTime | Null Yes
usuario IntNullableFilter | Int | Null Yes
estado IntNullableFilter | Int | Null Yes
estado_str StringNullableFilter | String | Null Yes
fecha_inicio DateTimeNullableFilter | DateTime | Null Yes
fecha_finalizacion DateTimeNullableFilter | DateTime | Null Yes

estudio_personaOrderByWithRelationInput

Name Type Nullable
idEstudio_persona SortOrder No
idEstudio SortOrder No
idPersona SortOrder No
descripcion SortOrder No
fecha_registro SortOrder No
usuario SortOrder No
estado SortOrder No
estado_str SortOrder No
fecha_inicio SortOrder No
fecha_finalizacion SortOrder No

estudio_personaWhereUniqueInput

Name Type Nullable
idEstudio_persona Int No

estudio_personaOrderByWithAggregationInput

Name Type Nullable
idEstudio_persona SortOrder No
idEstudio SortOrder No
idPersona SortOrder No
descripcion SortOrder No
fecha_registro SortOrder No
usuario SortOrder No
estado SortOrder No
estado_str SortOrder No
fecha_inicio SortOrder No
fecha_finalizacion SortOrder No
_count estudio_personaCountOrderByAggregateInput No
_avg estudio_personaAvgOrderByAggregateInput No
_max estudio_personaMaxOrderByAggregateInput No
_min estudio_personaMinOrderByAggregateInput No
_sum estudio_personaSumOrderByAggregateInput No

estudio_personaScalarWhereWithAggregatesInput

Name Type Nullable
AND estudio_personaScalarWhereWithAggregatesInput | estudio_personaScalarWhereWithAggregatesInput[] No
OR estudio_personaScalarWhereWithAggregatesInput[] No
NOT estudio_personaScalarWhereWithAggregatesInput | estudio_personaScalarWhereWithAggregatesInput[] No
idEstudio_persona IntWithAggregatesFilter | Int No
idEstudio IntNullableWithAggregatesFilter | Int | Null Yes
idPersona IntNullableWithAggregatesFilter | Int | Null Yes
descripcion StringNullableWithAggregatesFilter | String | Null Yes
fecha_registro DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
usuario IntNullableWithAggregatesFilter | Int | Null Yes
estado IntNullableWithAggregatesFilter | Int | Null Yes
estado_str StringNullableWithAggregatesFilter | String | Null Yes
fecha_inicio DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
fecha_finalizacion DateTimeNullableWithAggregatesFilter | DateTime | Null Yes

falla_articuloWhereInput

Name Type Nullable
AND falla_articuloWhereInput | falla_articuloWhereInput[] No
OR falla_articuloWhereInput[] No
NOT falla_articuloWhereInput | falla_articuloWhereInput[] No
idFallasArticulos IntFilter | Int No
falla IntFilter | Int No
articulo IntFilter | Int No

falla_articuloOrderByWithRelationInput

Name Type Nullable
idFallasArticulos SortOrder No
falla SortOrder No
articulo SortOrder No

falla_articuloWhereUniqueInput

Name Type Nullable
idFallasArticulos Int No

falla_articuloOrderByWithAggregationInput

Name Type Nullable
idFallasArticulos SortOrder No
falla SortOrder No
articulo SortOrder No
_count falla_articuloCountOrderByAggregateInput No
_avg falla_articuloAvgOrderByAggregateInput No
_max falla_articuloMaxOrderByAggregateInput No
_min falla_articuloMinOrderByAggregateInput No
_sum falla_articuloSumOrderByAggregateInput No


fallasWhereInput

Name Type Nullable
AND fallasWhereInput | fallasWhereInput[] No
OR fallasWhereInput[] No
NOT fallasWhereInput | fallasWhereInput[] No
idFallas IntFilter | Int No
descripcion StringNullableFilter | String | Null Yes
tipo StringNullableFilter | String | Null Yes
estado IntNullableFilter | Int | Null Yes
gravedad StringNullableFilter | String | Null Yes
articulo StringNullableFilter | String | Null Yes

fallasOrderByWithRelationInput

Name Type Nullable
idFallas SortOrder No
descripcion SortOrder No
tipo SortOrder No
estado SortOrder No
gravedad SortOrder No
articulo SortOrder No

fallasWhereUniqueInput

Name Type Nullable
idFallas Int No

fallasOrderByWithAggregationInput

Name Type Nullable
idFallas SortOrder No
descripcion SortOrder No
tipo SortOrder No
estado SortOrder No
gravedad SortOrder No
articulo SortOrder No
_count fallasCountOrderByAggregateInput No
_avg fallasAvgOrderByAggregateInput No
_max fallasMaxOrderByAggregateInput No
_min fallasMinOrderByAggregateInput No
_sum fallasSumOrderByAggregateInput No


fallas_maquinasWhereInput

Name Type Nullable
AND fallas_maquinasWhereInput | fallas_maquinasWhereInput[] No
OR fallas_maquinasWhereInput[] No
NOT fallas_maquinasWhereInput | fallas_maquinasWhereInput[] No
idFallas_maquinas IntFilter | Int No
maquina IntFilter | Int No
falla IntFilter | Int No
fecha_registro DateTimeFilter | DateTime No
estado IntFilter | Int No
usuario IntFilter | Int No
ticket IntNullableFilter | Int | Null Yes

fallas_maquinasOrderByWithRelationInput

Name Type Nullable
idFallas_maquinas SortOrder No
maquina SortOrder No
falla SortOrder No
fecha_registro SortOrder No
estado SortOrder No
usuario SortOrder No
ticket SortOrder No

fallas_maquinasWhereUniqueInput

Name Type Nullable
idFallas_maquinas Int No

fallas_maquinasOrderByWithAggregationInput

Name Type Nullable
idFallas_maquinas SortOrder No
maquina SortOrder No
falla SortOrder No
fecha_registro SortOrder No
estado SortOrder No
usuario SortOrder No
ticket SortOrder No
_count fallas_maquinasCountOrderByAggregateInput No
_avg fallas_maquinasAvgOrderByAggregateInput No
_max fallas_maquinasMaxOrderByAggregateInput No
_min fallas_maquinasMinOrderByAggregateInput No
_sum fallas_maquinasSumOrderByAggregateInput No


familiarWhereInput

Name Type Nullable
AND familiarWhereInput | familiarWhereInput[] No
OR familiarWhereInput[] No
NOT familiarWhereInput | familiarWhereInput[] No
idFamiliar IntFilter | Int No
idPersona IntNullableFilter | Int | Null Yes
parentezco StringNullableFilter | String | Null Yes
documento StringNullableFilter | String | Null Yes
estado IntNullableFilter | Int | Null Yes
nombre StringNullableFilter | String | Null Yes
tipo_doc StringNullableFilter | String | Null Yes
telefono StringNullableFilter | String | Null Yes

familiarOrderByWithRelationInput

Name Type Nullable
idFamiliar SortOrder No
idPersona SortOrder No
parentezco SortOrder No
documento SortOrder No
estado SortOrder No
nombre SortOrder No
tipo_doc SortOrder No
telefono SortOrder No

familiarWhereUniqueInput

Name Type Nullable
idFamiliar Int No

familiarOrderByWithAggregationInput

Name Type Nullable
idFamiliar SortOrder No
idPersona SortOrder No
parentezco SortOrder No
documento SortOrder No
estado SortOrder No
nombre SortOrder No
tipo_doc SortOrder No
telefono SortOrder No
_count familiarCountOrderByAggregateInput No
_avg familiarAvgOrderByAggregateInput No
_max familiarMaxOrderByAggregateInput No
_min familiarMinOrderByAggregateInput No
_sum familiarSumOrderByAggregateInput No

familiarScalarWhereWithAggregatesInput

Name Type Nullable
AND familiarScalarWhereWithAggregatesInput | familiarScalarWhereWithAggregatesInput[] No
OR familiarScalarWhereWithAggregatesInput[] No
NOT familiarScalarWhereWithAggregatesInput | familiarScalarWhereWithAggregatesInput[] No
idFamiliar IntWithAggregatesFilter | Int No
idPersona IntNullableWithAggregatesFilter | Int | Null Yes
parentezco StringNullableWithAggregatesFilter | String | Null Yes
documento StringNullableWithAggregatesFilter | String | Null Yes
estado IntNullableWithAggregatesFilter | Int | Null Yes
nombre StringNullableWithAggregatesFilter | String | Null Yes
tipo_doc StringNullableWithAggregatesFilter | String | Null Yes
telefono StringNullableWithAggregatesFilter | String | Null Yes

fechalimiteprogramadoWhereInput

Name Type Nullable
AND fechalimiteprogramadoWhereInput | fechalimiteprogramadoWhereInput[] No
OR fechalimiteprogramadoWhereInput[] No
NOT fechalimiteprogramadoWhereInput | fechalimiteprogramadoWhereInput[] No
idFechaLimiteProgramado IntFilter | Int No
fecha DateTimeNullableFilter | DateTime | Null Yes
usuario IntNullableFilter | Int | Null Yes
estado IntNullableFilter | Int | Null Yes
f_registro DateTimeNullableFilter | DateTime | Null Yes

fechalimiteprogramadoOrderByWithRelationInput

Name Type Nullable
idFechaLimiteProgramado SortOrder No
fecha SortOrder No
usuario SortOrder No
estado SortOrder No
f_registro SortOrder No

fechalimiteprogramadoWhereUniqueInput

Name Type Nullable
idFechaLimiteProgramado Int No

fechalimiteprogramadoOrderByWithAggregationInput

Name Type Nullable
idFechaLimiteProgramado SortOrder No
fecha SortOrder No
usuario SortOrder No
estado SortOrder No
f_registro SortOrder No
_count fechalimiteprogramadoCountOrderByAggregateInput No
_avg fechalimiteprogramadoAvgOrderByAggregateInput No
_max fechalimiteprogramadoMaxOrderByAggregateInput No
_min fechalimiteprogramadoMinOrderByAggregateInput No
_sum fechalimiteprogramadoSumOrderByAggregateInput No


institucionWhereInput

Name Type Nullable
AND institucionWhereInput | institucionWhereInput[] No
OR institucionWhereInput[] No
NOT institucionWhereInput | institucionWhereInput[] No
idInstitucion IntFilter | Int No
nombre StringNullableFilter | String | Null Yes
direccion StringNullableFilter | String | Null Yes
telefono StringNullableFilter | String | Null Yes
email StringNullableFilter | String | Null Yes
web StringNullableFilter | String | Null Yes
estado IntNullableFilter | Int | Null Yes

institucionOrderByWithRelationInput

Name Type Nullable
idInstitucion SortOrder No
nombre SortOrder No
direccion SortOrder No
telefono SortOrder No
email SortOrder No
web SortOrder No
estado SortOrder No

institucionWhereUniqueInput

Name Type Nullable
idInstitucion Int No

institucionOrderByWithAggregationInput

Name Type Nullable
idInstitucion SortOrder No
nombre SortOrder No
direccion SortOrder No
telefono SortOrder No
email SortOrder No
web SortOrder No
estado SortOrder No
_count institucionCountOrderByAggregateInput No
_avg institucionAvgOrderByAggregateInput No
_max institucionMaxOrderByAggregateInput No
_min institucionMinOrderByAggregateInput No
_sum institucionSumOrderByAggregateInput No


licenciaWhereInput

Name Type Nullable
AND licenciaWhereInput | licenciaWhereInput[] No
OR licenciaWhereInput[] No
NOT licenciaWhereInput | licenciaWhereInput[] No
idLicencia IntFilter | Int No
titulo StringFilter | String No
descripcion StringNullableFilter | String | Null Yes
dias IntNullableFilter | Int | Null Yes
estado IntNullableFilter | Int | Null Yes

licenciaOrderByWithRelationInput

Name Type Nullable
idLicencia SortOrder No
titulo SortOrder No
descripcion SortOrder No
dias SortOrder No
estado SortOrder No

licenciaWhereUniqueInput

Name Type Nullable
idLicencia Int No

licenciaOrderByWithAggregationInput

Name Type Nullable
idLicencia SortOrder No
titulo SortOrder No
descripcion SortOrder No
dias SortOrder No
estado SortOrder No
_count licenciaCountOrderByAggregateInput No
_avg licenciaAvgOrderByAggregateInput No
_max licenciaMaxOrderByAggregateInput No
_min licenciaMinOrderByAggregateInput No
_sum licenciaSumOrderByAggregateInput No


licencia_personaWhereInput

Name Type Nullable
AND licencia_personaWhereInput | licencia_personaWhereInput[] No
OR licencia_personaWhereInput[] No
NOT licencia_personaWhereInput | licencia_personaWhereInput[] No
idLicenciaPersona IntFilter | Int No
idLicencia IntFilter | Int No
idPersona IntFilter | Int No
fecha_registro DateTimeFilter | DateTime No
usuario IntFilter | Int No
estado IntFilter | Int No
descripcion StringNullableFilter | String | Null Yes
documento StringFilter | String No
dias IntFilter | Int No
f_inicio DateTimeFilter | DateTime No
f_fin DateTimeFilter | DateTime No

licencia_personaOrderByWithRelationInput

Name Type Nullable
idLicenciaPersona SortOrder No
idLicencia SortOrder No
idPersona SortOrder No
fecha_registro SortOrder No
usuario SortOrder No
estado SortOrder No
descripcion SortOrder No
documento SortOrder No
dias SortOrder No
f_inicio SortOrder No
f_fin SortOrder No

licencia_personaWhereUniqueInput

Name Type Nullable
idLicenciaPersona Int No

licencia_personaOrderByWithAggregationInput

Name Type Nullable
idLicenciaPersona SortOrder No
idLicencia SortOrder No
idPersona SortOrder No
fecha_registro SortOrder No
usuario SortOrder No
estado SortOrder No
descripcion SortOrder No
documento SortOrder No
dias SortOrder No
f_inicio SortOrder No
f_fin SortOrder No
_count licencia_personaCountOrderByAggregateInput No
_avg licencia_personaAvgOrderByAggregateInput No
_max licencia_personaMaxOrderByAggregateInput No
_min licencia_personaMinOrderByAggregateInput No
_sum licencia_personaSumOrderByAggregateInput No

licencia_personaScalarWhereWithAggregatesInput

Name Type Nullable
AND licencia_personaScalarWhereWithAggregatesInput | licencia_personaScalarWhereWithAggregatesInput[] No
OR licencia_personaScalarWhereWithAggregatesInput[] No
NOT licencia_personaScalarWhereWithAggregatesInput | licencia_personaScalarWhereWithAggregatesInput[] No
idLicenciaPersona IntWithAggregatesFilter | Int No
idLicencia IntWithAggregatesFilter | Int No
idPersona IntWithAggregatesFilter | Int No
fecha_registro DateTimeWithAggregatesFilter | DateTime No
usuario IntWithAggregatesFilter | Int No
estado IntWithAggregatesFilter | Int No
descripcion StringNullableWithAggregatesFilter | String | Null Yes
documento StringWithAggregatesFilter | String No
dias IntWithAggregatesFilter | Int No
f_inicio DateTimeWithAggregatesFilter | DateTime No
f_fin DateTimeWithAggregatesFilter | DateTime No

maquinasWhereInput

Name Type Nullable
AND maquinasWhereInput | maquinasWhereInput[] No
OR maquinasWhereInput[] No
NOT maquinasWhereInput | maquinasWhereInput[] No
idMaquina IntFilter | Int No
nro_egm IntNullableFilter | Int | Null Yes
fabricante StringNullableFilter | String | Null Yes
modelo StringNullableFilter | String | Null Yes
p_pago StringNullableFilter | String | Null Yes
denom StringNullableFilter | String | Null Yes
juego StringNullableFilter | String | Null Yes
nro_serie StringNullableFilter | String | Null Yes
programa StringNullableFilter | String | Null Yes
credito StringNullableFilter | String | Null Yes
estado StringNullableFilter | String | Null Yes
img StringNullableFilter | String | Null Yes
ap_minima StringNullableFilter | String | Null Yes
ap_maxima StringNullableFilter | String | Null Yes
cant_lineas StringNullableFilter | String | Null Yes
tipo_juego StringNullableFilter | String | Null Yes

maquinasOrderByWithRelationInput

Name Type Nullable
idMaquina SortOrder No
nro_egm SortOrder No
fabricante SortOrder No
modelo SortOrder No
p_pago SortOrder No
denom SortOrder No
juego SortOrder No
nro_serie SortOrder No
programa SortOrder No
credito SortOrder No
estado SortOrder No
img SortOrder No
ap_minima SortOrder No
ap_maxima SortOrder No
cant_lineas SortOrder No
tipo_juego SortOrder No

maquinasWhereUniqueInput

Name Type Nullable
idMaquina Int No

maquinasOrderByWithAggregationInput

Name Type Nullable
idMaquina SortOrder No
nro_egm SortOrder No
fabricante SortOrder No
modelo SortOrder No
p_pago SortOrder No
denom SortOrder No
juego SortOrder No
nro_serie SortOrder No
programa SortOrder No
credito SortOrder No
estado SortOrder No
img SortOrder No
ap_minima SortOrder No
ap_maxima SortOrder No
cant_lineas SortOrder No
tipo_juego SortOrder No
_count maquinasCountOrderByAggregateInput No
_avg maquinasAvgOrderByAggregateInput No
_max maquinasMaxOrderByAggregateInput No
_min maquinasMinOrderByAggregateInput No
_sum maquinasSumOrderByAggregateInput No

maquinasScalarWhereWithAggregatesInput

Name Type Nullable
AND maquinasScalarWhereWithAggregatesInput | maquinasScalarWhereWithAggregatesInput[] No
OR maquinasScalarWhereWithAggregatesInput[] No
NOT maquinasScalarWhereWithAggregatesInput | maquinasScalarWhereWithAggregatesInput[] No
idMaquina IntWithAggregatesFilter | Int No
nro_egm IntNullableWithAggregatesFilter | Int | Null Yes
fabricante StringNullableWithAggregatesFilter | String | Null Yes
modelo StringNullableWithAggregatesFilter | String | Null Yes
p_pago StringNullableWithAggregatesFilter | String | Null Yes
denom StringNullableWithAggregatesFilter | String | Null Yes
juego StringNullableWithAggregatesFilter | String | Null Yes
nro_serie StringNullableWithAggregatesFilter | String | Null Yes
programa StringNullableWithAggregatesFilter | String | Null Yes
credito StringNullableWithAggregatesFilter | String | Null Yes
estado StringNullableWithAggregatesFilter | String | Null Yes
img StringNullableWithAggregatesFilter | String | Null Yes
ap_minima StringNullableWithAggregatesFilter | String | Null Yes
ap_maxima StringNullableWithAggregatesFilter | String | Null Yes
cant_lineas StringNullableWithAggregatesFilter | String | Null Yes
tipo_juego StringNullableWithAggregatesFilter | String | Null Yes

maquinas_piezasWhereInput

Name Type Nullable
AND maquinas_piezasWhereInput | maquinas_piezasWhereInput[] No
OR maquinas_piezasWhereInput[] No
NOT maquinas_piezasWhereInput | maquinas_piezasWhereInput[] No
nro_egm IntFilter | Int No
modelo StringFilter | String No
tipo_aceptbill StringFilter | String No
tipo_impre StringFilter | String No
tipo_moni StringFilter | String No

maquinas_piezasOrderByWithRelationInput

Name Type Nullable
nro_egm SortOrder No
modelo SortOrder No
tipo_aceptbill SortOrder No
tipo_impre SortOrder No
tipo_moni SortOrder No

maquinas_piezasWhereUniqueInput

Name Type Nullable
nro_egm Int No

maquinas_piezasOrderByWithAggregationInput

Name Type Nullable
nro_egm SortOrder No
modelo SortOrder No
tipo_aceptbill SortOrder No
tipo_impre SortOrder No
tipo_moni SortOrder No
_count maquinas_piezasCountOrderByAggregateInput No
_avg maquinas_piezasAvgOrderByAggregateInput No
_max maquinas_piezasMaxOrderByAggregateInput No
_min maquinas_piezasMinOrderByAggregateInput No
_sum maquinas_piezasSumOrderByAggregateInput No


menu_personalWhereInput

Name Type Nullable
AND menu_personalWhereInput | menu_personalWhereInput[] No
OR menu_personalWhereInput[] No
NOT menu_personalWhereInput | menu_personalWhereInput[] No
idMenuPersonal IntFilter | Int No
estado IntNullableFilter | Int | Null Yes
f_proceso DateTimeNullableFilter | DateTime | Null Yes
descripcion StringNullableFilter | String | Null Yes
usuario_carga IntNullableFilter | Int | Null Yes
fecha_menu DateTimeNullableFilter | DateTime | Null Yes
tipo_menu StringNullableFilter | String | Null Yes
valor DecimalNullableFilter | Decimal | Null Yes

menu_personalOrderByWithRelationInput

Name Type Nullable
idMenuPersonal SortOrder No
estado SortOrder No
f_proceso SortOrder No
descripcion SortOrder No
usuario_carga SortOrder No
fecha_menu SortOrder No
tipo_menu SortOrder No
valor SortOrder No

menu_personalWhereUniqueInput

Name Type Nullable
idMenuPersonal Int No

menu_personalOrderByWithAggregationInput

Name Type Nullable
idMenuPersonal SortOrder No
estado SortOrder No
f_proceso SortOrder No
descripcion SortOrder No
usuario_carga SortOrder No
fecha_menu SortOrder No
tipo_menu SortOrder No
valor SortOrder No
_count menu_personalCountOrderByAggregateInput No
_avg menu_personalAvgOrderByAggregateInput No
_max menu_personalMaxOrderByAggregateInput No
_min menu_personalMinOrderByAggregateInput No
_sum menu_personalSumOrderByAggregateInput No

menu_personalScalarWhereWithAggregatesInput

Name Type Nullable
AND menu_personalScalarWhereWithAggregatesInput | menu_personalScalarWhereWithAggregatesInput[] No
OR menu_personalScalarWhereWithAggregatesInput[] No
NOT menu_personalScalarWhereWithAggregatesInput | menu_personalScalarWhereWithAggregatesInput[] No
idMenuPersonal IntWithAggregatesFilter | Int No
estado IntNullableWithAggregatesFilter | Int | Null Yes
f_proceso DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
descripcion StringNullableWithAggregatesFilter | String | Null Yes
usuario_carga IntNullableWithAggregatesFilter | Int | Null Yes
fecha_menu DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
tipo_menu StringNullableWithAggregatesFilter | String | Null Yes
valor DecimalNullableWithAggregatesFilter | Decimal | Null Yes

menu_personal_20190904WhereInput

Name Type Nullable
AND menu_personal_20190904WhereInput | menu_personal_20190904WhereInput[] No
OR menu_personal_20190904WhereInput[] No
NOT menu_personal_20190904WhereInput | menu_personal_20190904WhereInput[] No
idMenuPersonal IntFilter | Int No
estado IntNullableFilter | Int | Null Yes
f_proceso DateTimeNullableFilter | DateTime | Null Yes
descripcion StringNullableFilter | String | Null Yes
usuario_carga IntNullableFilter | Int | Null Yes
fecha_menu DateTimeNullableFilter | DateTime | Null Yes

menu_personal_20190904OrderByWithRelationInput

Name Type Nullable
idMenuPersonal SortOrder No
estado SortOrder No
f_proceso SortOrder No
descripcion SortOrder No
usuario_carga SortOrder No
fecha_menu SortOrder No

menu_personal_20190904WhereUniqueInput

Name Type Nullable
idMenuPersonal Int No

menu_personal_20190904OrderByWithAggregationInput

Name Type Nullable
idMenuPersonal SortOrder No
estado SortOrder No
f_proceso SortOrder No
descripcion SortOrder No
usuario_carga SortOrder No
fecha_menu SortOrder No
_count menu_personal_20190904CountOrderByAggregateInput No
_avg menu_personal_20190904AvgOrderByAggregateInput No
_max menu_personal_20190904MaxOrderByAggregateInput No
_min menu_personal_20190904MinOrderByAggregateInput No
_sum menu_personal_20190904SumOrderByAggregateInput No


menu_personal_oldWhereInput

Name Type Nullable
AND menu_personal_oldWhereInput | menu_personal_oldWhereInput[] No
OR menu_personal_oldWhereInput[] No
NOT menu_personal_oldWhereInput | menu_personal_oldWhereInput[] No
idMenuPersonal IntFilter | Int No
estado IntNullableFilter | Int | Null Yes
f_proceso DateTimeNullableFilter | DateTime | Null Yes
descripcion StringNullableFilter | String | Null Yes
usuario_carga IntNullableFilter | Int | Null Yes
fecha_menu DateTimeNullableFilter | DateTime | Null Yes

menu_personal_oldOrderByWithRelationInput

Name Type Nullable
idMenuPersonal SortOrder No
estado SortOrder No
f_proceso SortOrder No
descripcion SortOrder No
usuario_carga SortOrder No
fecha_menu SortOrder No

menu_personal_oldWhereUniqueInput

Name Type Nullable
idMenuPersonal Int No

menu_personal_oldOrderByWithAggregationInput

Name Type Nullable
idMenuPersonal SortOrder No
estado SortOrder No
f_proceso SortOrder No
descripcion SortOrder No
usuario_carga SortOrder No
fecha_menu SortOrder No
_count menu_personal_oldCountOrderByAggregateInput No
_avg menu_personal_oldAvgOrderByAggregateInput No
_max menu_personal_oldMaxOrderByAggregateInput No
_min menu_personal_oldMinOrderByAggregateInput No
_sum menu_personal_oldSumOrderByAggregateInput No


movimiento_articuloWhereInput

Name Type Nullable
AND movimiento_articuloWhereInput | movimiento_articuloWhereInput[] No
OR movimiento_articuloWhereInput[] No
NOT movimiento_articuloWhereInput | movimiento_articuloWhereInput[] No
idMovimiento_articulo IntFilter | Int No
articulo IntFilter | Int No
cantidad IntFilter | Int No
fecha_hora DateTimeFilter | DateTime No
movimiento StringFilter | String No
usuario IntFilter | Int No
locacion StringNullableFilter | String | Null Yes

movimiento_articuloOrderByWithRelationInput

Name Type Nullable
idMovimiento_articulo SortOrder No
articulo SortOrder No
cantidad SortOrder No
fecha_hora SortOrder No
movimiento SortOrder No
usuario SortOrder No
locacion SortOrder No

movimiento_articuloWhereUniqueInput

Name Type Nullable
idMovimiento_articulo Int No

movimiento_articuloOrderByWithAggregationInput

Name Type Nullable
idMovimiento_articulo SortOrder No
articulo SortOrder No
cantidad SortOrder No
fecha_hora SortOrder No
movimiento SortOrder No
usuario SortOrder No
locacion SortOrder No
_count movimiento_articuloCountOrderByAggregateInput No
_avg movimiento_articuloAvgOrderByAggregateInput No
_max movimiento_articuloMaxOrderByAggregateInput No
_min movimiento_articuloMinOrderByAggregateInput No
_sum movimiento_articuloSumOrderByAggregateInput No


novedadesWhereInput

Name Type Nullable
AND novedadesWhereInput | novedadesWhereInput[] No
OR novedadesWhereInput[] No
NOT novedadesWhereInput | novedadesWhereInput[] No
idNovedades IntFilter | Int No
texto StringNullableFilter | String | Null Yes
referencia IntFilter | Int No
estado IntFilter | Int No
f_proceso DateTimeFilter | DateTime No
usuario IntFilter | Int No
tipo StringFilter | String No

novedadesOrderByWithRelationInput

Name Type Nullable
idNovedades SortOrder No
texto SortOrder No
referencia SortOrder No
estado SortOrder No
f_proceso SortOrder No
usuario SortOrder No
tipo SortOrder No

novedadesWhereUniqueInput

Name Type Nullable
idNovedades Int No

novedadesOrderByWithAggregationInput

Name Type Nullable
idNovedades SortOrder No
texto SortOrder No
referencia SortOrder No
estado SortOrder No
f_proceso SortOrder No
usuario SortOrder No
tipo SortOrder No
_count novedadesCountOrderByAggregateInput No
_avg novedadesAvgOrderByAggregateInput No
_max novedadesMaxOrderByAggregateInput No
_min novedadesMinOrderByAggregateInput No
_sum novedadesSumOrderByAggregateInput No


numericoWhereInput

Name Type Nullable
AND numericoWhereInput | numericoWhereInput[] No
OR numericoWhereInput[] No
NOT numericoWhereInput | numericoWhereInput[] No
numericocol IntFilter | Int No

numericoOrderByWithRelationInput

Name Type Nullable
numericocol SortOrder No

numericoWhereUniqueInput

Name Type Nullable
numericocol Int No

numericoOrderByWithAggregationInput

Name Type Nullable
numericocol SortOrder No
_count numericoCountOrderByAggregateInput No
_avg numericoAvgOrderByAggregateInput No
_max numericoMaxOrderByAggregateInput No
_min numericoMinOrderByAggregateInput No
_sum numericoSumOrderByAggregateInput No


parametro_menuWhereInput

Name Type Nullable
AND parametro_menuWhereInput | parametro_menuWhereInput[] No
OR parametro_menuWhereInput[] No
NOT parametro_menuWhereInput | parametro_menuWhereInput[] No
idParametroMenu IntFilter | Int No
dia StringFilter | String No
tiempo StringFilter | String No
cantidad IntFilter | Int No
f_proceso DateTimeNullableFilter | DateTime | Null Yes
usuario_carga IntNullableFilter | Int | Null Yes
estado IntNullableFilter | Int | Null Yes

parametro_menuOrderByWithRelationInput

Name Type Nullable
idParametroMenu SortOrder No
dia SortOrder No
tiempo SortOrder No
cantidad SortOrder No
f_proceso SortOrder No
usuario_carga SortOrder No
estado SortOrder No

parametro_menuWhereUniqueInput

Name Type Nullable
idParametroMenu Int No

parametro_menuOrderByWithAggregationInput

Name Type Nullable
idParametroMenu SortOrder No
dia SortOrder No
tiempo SortOrder No
cantidad SortOrder No
f_proceso SortOrder No
usuario_carga SortOrder No
estado SortOrder No
_count parametro_menuCountOrderByAggregateInput No
_avg parametro_menuAvgOrderByAggregateInput No
_max parametro_menuMaxOrderByAggregateInput No
_min parametro_menuMinOrderByAggregateInput No
_sum parametro_menuSumOrderByAggregateInput No


pedidoWhereInput

Name Type Nullable
AND pedidoWhereInput | pedidoWhereInput[] No
OR pedidoWhereInput[] No
NOT pedidoWhereInput | pedidoWhereInput[] No
idPedido IntFilter | Int No
idCalendarioMenu IntNullableFilter | Int | Null Yes
idMenu IntNullableFilter | Int | Null Yes
usuario IntNullableFilter | Int | Null Yes
f_registro DateTimeNullableFilter | DateTime | Null Yes
f_listo DateTimeNullableFilter | DateTime | Null Yes
estado IntNullableFilter | Int | Null Yes
persona IntNullableFilter | Int | Null Yes
legajo StringNullableFilter | String | Null Yes
persona_str StringNullableFilter | String | Null Yes
descripcion StringNullableFilter | String | Null Yes
importe_externo DecimalNullableFilter | Decimal | Null Yes
importe_interno DecimalNullableFilter | Decimal | Null Yes
idMenuBingo IntNullableFilter | Int | Null Yes
turno StringNullableFilter | String | Null Yes

pedidoOrderByWithRelationInput

Name Type Nullable
idPedido SortOrder No
idCalendarioMenu SortOrder No
idMenu SortOrder No
usuario SortOrder No
f_registro SortOrder No
f_listo SortOrder No
estado SortOrder No
persona SortOrder No
legajo SortOrder No
persona_str SortOrder No
descripcion SortOrder No
importe_externo SortOrder No
importe_interno SortOrder No
idMenuBingo SortOrder No
turno SortOrder No

pedidoWhereUniqueInput

Name Type Nullable
idPedido Int No

pedidoOrderByWithAggregationInput

Name Type Nullable
idPedido SortOrder No
idCalendarioMenu SortOrder No
idMenu SortOrder No
usuario SortOrder No
f_registro SortOrder No
f_listo SortOrder No
estado SortOrder No
persona SortOrder No
legajo SortOrder No
persona_str SortOrder No
descripcion SortOrder No
importe_externo SortOrder No
importe_interno SortOrder No
idMenuBingo SortOrder No
turno SortOrder No
_count pedidoCountOrderByAggregateInput No
_avg pedidoAvgOrderByAggregateInput No
_max pedidoMaxOrderByAggregateInput No
_min pedidoMinOrderByAggregateInput No
_sum pedidoSumOrderByAggregateInput No

pedidoScalarWhereWithAggregatesInput

Name Type Nullable
AND pedidoScalarWhereWithAggregatesInput | pedidoScalarWhereWithAggregatesInput[] No
OR pedidoScalarWhereWithAggregatesInput[] No
NOT pedidoScalarWhereWithAggregatesInput | pedidoScalarWhereWithAggregatesInput[] No
idPedido IntWithAggregatesFilter | Int No
idCalendarioMenu IntNullableWithAggregatesFilter | Int | Null Yes
idMenu IntNullableWithAggregatesFilter | Int | Null Yes
usuario IntNullableWithAggregatesFilter | Int | Null Yes
f_registro DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
f_listo DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
estado IntNullableWithAggregatesFilter | Int | Null Yes
persona IntNullableWithAggregatesFilter | Int | Null Yes
legajo StringNullableWithAggregatesFilter | String | Null Yes
persona_str StringNullableWithAggregatesFilter | String | Null Yes
descripcion StringNullableWithAggregatesFilter | String | Null Yes
importe_externo DecimalNullableWithAggregatesFilter | Decimal | Null Yes
importe_interno DecimalNullableWithAggregatesFilter | Decimal | Null Yes
idMenuBingo IntNullableWithAggregatesFilter | Int | Null Yes
turno StringNullableWithAggregatesFilter | String | Null Yes

pedido_oldWhereInput

Name Type Nullable
AND pedido_oldWhereInput | pedido_oldWhereInput[] No
OR pedido_oldWhereInput[] No
NOT pedido_oldWhereInput | pedido_oldWhereInput[] No
idPedido IntFilter | Int No
idCalendarioMenu IntNullableFilter | Int | Null Yes
idMenu IntNullableFilter | Int | Null Yes
usuario IntNullableFilter | Int | Null Yes
f_registro DateTimeNullableFilter | DateTime | Null Yes
f_listo DateTimeNullableFilter | DateTime | Null Yes
estado IntNullableFilter | Int | Null Yes
persona IntNullableFilter | Int | Null Yes
legajo StringNullableFilter | String | Null Yes
persona_str StringNullableFilter | String | Null Yes
descripcion StringNullableFilter | String | Null Yes

pedido_oldOrderByWithRelationInput

Name Type Nullable
idPedido SortOrder No
idCalendarioMenu SortOrder No
idMenu SortOrder No
usuario SortOrder No
f_registro SortOrder No
f_listo SortOrder No
estado SortOrder No
persona SortOrder No
legajo SortOrder No
persona_str SortOrder No
descripcion SortOrder No

pedido_oldWhereUniqueInput

Name Type Nullable
idPedido Int No

pedido_oldOrderByWithAggregationInput

Name Type Nullable
idPedido SortOrder No
idCalendarioMenu SortOrder No
idMenu SortOrder No
usuario SortOrder No
f_registro SortOrder No
f_listo SortOrder No
estado SortOrder No
persona SortOrder No
legajo SortOrder No
persona_str SortOrder No
descripcion SortOrder No
_count pedido_oldCountOrderByAggregateInput No
_avg pedido_oldAvgOrderByAggregateInput No
_max pedido_oldMaxOrderByAggregateInput No
_min pedido_oldMinOrderByAggregateInput No
_sum pedido_oldSumOrderByAggregateInput No

pedido_oldScalarWhereWithAggregatesInput

Name Type Nullable
AND pedido_oldScalarWhereWithAggregatesInput | pedido_oldScalarWhereWithAggregatesInput[] No
OR pedido_oldScalarWhereWithAggregatesInput[] No
NOT pedido_oldScalarWhereWithAggregatesInput | pedido_oldScalarWhereWithAggregatesInput[] No
idPedido IntWithAggregatesFilter | Int No
idCalendarioMenu IntNullableWithAggregatesFilter | Int | Null Yes
idMenu IntNullableWithAggregatesFilter | Int | Null Yes
usuario IntNullableWithAggregatesFilter | Int | Null Yes
f_registro DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
f_listo DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
estado IntNullableWithAggregatesFilter | Int | Null Yes
persona IntNullableWithAggregatesFilter | Int | Null Yes
legajo StringNullableWithAggregatesFilter | String | Null Yes
persona_str StringNullableWithAggregatesFilter | String | Null Yes
descripcion StringNullableWithAggregatesFilter | String | Null Yes

permisosWhereInput

Name Type Nullable
AND permisosWhereInput | permisosWhereInput[] No
OR permisosWhereInput[] No
NOT permisosWhereInput | permisosWhereInput[] No
idPermiso IntFilter | Int No
nombre StringFilter | String No
permisos StringNullableFilter | String | Null Yes
estado BoolNullableFilter | Boolean | Null Yes
fecha_registro DateTimeNullableFilter | DateTime | Null Yes

permisosOrderByWithRelationInput

Name Type Nullable
idPermiso SortOrder No
nombre SortOrder No
permisos SortOrder No
estado SortOrder No
fecha_registro SortOrder No

permisosWhereUniqueInput

Name Type Nullable
idPermiso Int No

permisosOrderByWithAggregationInput

Name Type Nullable
idPermiso SortOrder No
nombre SortOrder No
permisos SortOrder No
estado SortOrder No
fecha_registro SortOrder No
_count permisosCountOrderByAggregateInput No
_avg permisosAvgOrderByAggregateInput No
_max permisosMaxOrderByAggregateInput No
_min permisosMinOrderByAggregateInput No
_sum permisosSumOrderByAggregateInput No


personaWhereInput

Name Type Nullable
AND personaWhereInput | personaWhereInput[] No
OR personaWhereInput[] No
NOT personaWhereInput | personaWhereInput[] No
id IntFilter | Int No
nombre StringFilter | String No
apellido StringFilter | String No
alta DateTimeFilter | DateTime No
id_tarjeta IntNullableFilter | Int | Null Yes
legajo StringNullableFilter | String | Null Yes
preciohora DecimalFilter | Decimal No
extras IntFilter | Int No
id_bioadmin IntNullableFilter | Int | Null Yes
imagen BytesNullableFilter | Bytes | Null Yes
inc_reportes IntNullableFilter | Int | Null Yes
eliminado DateTimeNullableFilter | DateTime | Null Yes
fecha_ingreso DateTimeNullableFilter | DateTime | Null Yes
contrasena StringNullableFilter | String | Null Yes
rol IntFilter | Int No
direccion StringNullableFilter | String | Null Yes
dni StringNullableFilter | String | Null Yes
email StringNullableFilter | String | Null Yes
cel StringNullableFilter | String | Null Yes
tel StringNullableFilter | String | Null Yes
cp StringNullableFilter | String | Null Yes
vehiculo StringNullableFilter | String | Null Yes
patente StringNullableFilter | String | Null Yes
id_provincia IntNullableFilter | Int | Null Yes
localidad StringNullableFilter | String | Null Yes
id_calendario IntNullableFilter | Int | Null Yes
tarjetazk StringNullableFilter | String | Null Yes
fecha_venc DateTimeNullableFilter | DateTime | Null Yes
id_sector_por_empresa IntNullableFilter | Int | Null Yes
remoto_password StringNullableFilter | String | Null Yes
envio_tarde IntFilter | Int No
ultima_fecha_envio_tarde DateTimeNullableFilter | DateTime | Null Yes
email_trabajo StringNullableFilter | String | Null Yes
cuil StringNullableFilter | String | Null Yes
pass_myweb StringNullableFilter | String | Null Yes
modulos_habilitados StringNullableFilter | String | Null Yes
IDPHONE StringNullableFilter | String | Null Yes
ES_VISITA IntNullableFilter | Int | Null Yes
V_EMPRESA_ORIGEN StringNullableFilter | String | Null Yes
V_EMPLEADO_VISITA IntNullableFilter | Int | Null Yes
V_PERTENENCIAS StringNullableFilter | String | Null Yes
V_NRO_ART StringNullableFilter | String | Null Yes
V_MOTIVO_VISITA StringNullableFilter | String | Null Yes
V_VENCIDO IntNullableFilter | Int | Null Yes
FECHA_NACIMIENTO DateTimeNullableFilter | DateTime | Null Yes
PUESTO_TRABAJO StringNullableFilter | String | Null Yes

personaOrderByWithRelationInput

Name Type Nullable
id SortOrder No
nombre SortOrder No
apellido SortOrder No
alta SortOrder No
id_tarjeta SortOrder No
legajo SortOrder No
preciohora SortOrder No
extras SortOrder No
id_bioadmin SortOrder No
imagen SortOrder No
inc_reportes SortOrder No
eliminado SortOrder No
fecha_ingreso SortOrder No
contrasena SortOrder No
rol SortOrder No
direccion SortOrder No
dni SortOrder No
email SortOrder No
cel SortOrder No
tel SortOrder No
cp SortOrder No
vehiculo SortOrder No
patente SortOrder No
id_provincia SortOrder No
localidad SortOrder No
id_calendario SortOrder No
tarjetazk SortOrder No
fecha_venc SortOrder No
id_sector_por_empresa SortOrder No
remoto_password SortOrder No
envio_tarde SortOrder No
ultima_fecha_envio_tarde SortOrder No
email_trabajo SortOrder No
cuil SortOrder No
pass_myweb SortOrder No
modulos_habilitados SortOrder No
IDPHONE SortOrder No
ES_VISITA SortOrder No
V_EMPRESA_ORIGEN SortOrder No
V_EMPLEADO_VISITA SortOrder No
V_PERTENENCIAS SortOrder No
V_NRO_ART SortOrder No
V_MOTIVO_VISITA SortOrder No
V_VENCIDO SortOrder No
FECHA_NACIMIENTO SortOrder No
PUESTO_TRABAJO SortOrder No

personaWhereUniqueInput

Name Type Nullable
id Int No

personaOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
nombre SortOrder No
apellido SortOrder No
alta SortOrder No
id_tarjeta SortOrder No
legajo SortOrder No
preciohora SortOrder No
extras SortOrder No
id_bioadmin SortOrder No
imagen SortOrder No
inc_reportes SortOrder No
eliminado SortOrder No
fecha_ingreso SortOrder No
contrasena SortOrder No
rol SortOrder No
direccion SortOrder No
dni SortOrder No
email SortOrder No
cel SortOrder No
tel SortOrder No
cp SortOrder No
vehiculo SortOrder No
patente SortOrder No
id_provincia SortOrder No
localidad SortOrder No
id_calendario SortOrder No
tarjetazk SortOrder No
fecha_venc SortOrder No
id_sector_por_empresa SortOrder No
remoto_password SortOrder No
envio_tarde SortOrder No
ultima_fecha_envio_tarde SortOrder No
email_trabajo SortOrder No
cuil SortOrder No
pass_myweb SortOrder No
modulos_habilitados SortOrder No
IDPHONE SortOrder No
ES_VISITA SortOrder No
V_EMPRESA_ORIGEN SortOrder No
V_EMPLEADO_VISITA SortOrder No
V_PERTENENCIAS SortOrder No
V_NRO_ART SortOrder No
V_MOTIVO_VISITA SortOrder No
V_VENCIDO SortOrder No
FECHA_NACIMIENTO SortOrder No
PUESTO_TRABAJO SortOrder No
_count personaCountOrderByAggregateInput No
_avg personaAvgOrderByAggregateInput No
_max personaMaxOrderByAggregateInput No
_min personaMinOrderByAggregateInput No
_sum personaSumOrderByAggregateInput No

personaScalarWhereWithAggregatesInput

Name Type Nullable
AND personaScalarWhereWithAggregatesInput | personaScalarWhereWithAggregatesInput[] No
OR personaScalarWhereWithAggregatesInput[] No
NOT personaScalarWhereWithAggregatesInput | personaScalarWhereWithAggregatesInput[] No
id IntWithAggregatesFilter | Int No
nombre StringWithAggregatesFilter | String No
apellido StringWithAggregatesFilter | String No
alta DateTimeWithAggregatesFilter | DateTime No
id_tarjeta IntNullableWithAggregatesFilter | Int | Null Yes
legajo StringNullableWithAggregatesFilter | String | Null Yes
preciohora DecimalWithAggregatesFilter | Decimal No
extras IntWithAggregatesFilter | Int No
id_bioadmin IntNullableWithAggregatesFilter | Int | Null Yes
imagen BytesNullableWithAggregatesFilter | Bytes | Null Yes
inc_reportes IntNullableWithAggregatesFilter | Int | Null Yes
eliminado DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
fecha_ingreso DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
contrasena StringNullableWithAggregatesFilter | String | Null Yes
rol IntWithAggregatesFilter | Int No
direccion StringNullableWithAggregatesFilter | String | Null Yes
dni StringNullableWithAggregatesFilter | String | Null Yes
email StringNullableWithAggregatesFilter | String | Null Yes
cel StringNullableWithAggregatesFilter | String | Null Yes
tel StringNullableWithAggregatesFilter | String | Null Yes
cp StringNullableWithAggregatesFilter | String | Null Yes
vehiculo StringNullableWithAggregatesFilter | String | Null Yes
patente StringNullableWithAggregatesFilter | String | Null Yes
id_provincia IntNullableWithAggregatesFilter | Int | Null Yes
localidad StringNullableWithAggregatesFilter | String | Null Yes
id_calendario IntNullableWithAggregatesFilter | Int | Null Yes
tarjetazk StringNullableWithAggregatesFilter | String | Null Yes
fecha_venc DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
id_sector_por_empresa IntNullableWithAggregatesFilter | Int | Null Yes
remoto_password StringNullableWithAggregatesFilter | String | Null Yes
envio_tarde IntWithAggregatesFilter | Int No
ultima_fecha_envio_tarde DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
email_trabajo StringNullableWithAggregatesFilter | String | Null Yes
cuil StringNullableWithAggregatesFilter | String | Null Yes
pass_myweb StringNullableWithAggregatesFilter | String | Null Yes
modulos_habilitados StringNullableWithAggregatesFilter | String | Null Yes
IDPHONE StringNullableWithAggregatesFilter | String | Null Yes
ES_VISITA IntNullableWithAggregatesFilter | Int | Null Yes
V_EMPRESA_ORIGEN StringNullableWithAggregatesFilter | String | Null Yes
V_EMPLEADO_VISITA IntNullableWithAggregatesFilter | Int | Null Yes
V_PERTENENCIAS StringNullableWithAggregatesFilter | String | Null Yes
V_NRO_ART StringNullableWithAggregatesFilter | String | Null Yes
V_MOTIVO_VISITA StringNullableWithAggregatesFilter | String | Null Yes
V_VENCIDO IntNullableWithAggregatesFilter | Int | Null Yes
FECHA_NACIMIENTO DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
PUESTO_TRABAJO StringNullableWithAggregatesFilter | String | Null Yes

premioWhereInput

Name Type Nullable
AND premioWhereInput | premioWhereInput[] No
OR premioWhereInput[] No
NOT premioWhereInput | premioWhereInput[] No
idPremio IntFilter | Int No
nombre StringNullableFilter | String | Null Yes
descripcion StringNullableFilter | String | Null Yes
img StringNullableFilter | String | Null Yes
estado IntNullableFilter | Int | Null Yes
f_premio DateTimeNullableFilter | DateTime | Null Yes
f_proceso DateTimeNullableFilter | DateTime | Null Yes
tipo StringNullableFilter | String | Null Yes
mes_cumplido IntNullableFilter | Int | Null Yes

premioOrderByWithRelationInput

Name Type Nullable
idPremio SortOrder No
nombre SortOrder No
descripcion SortOrder No
img SortOrder No
estado SortOrder No
f_premio SortOrder No
f_proceso SortOrder No
tipo SortOrder No
mes_cumplido SortOrder No

premioWhereUniqueInput

Name Type Nullable
idPremio Int No

premioOrderByWithAggregationInput

Name Type Nullable
idPremio SortOrder No
nombre SortOrder No
descripcion SortOrder No
img SortOrder No
estado SortOrder No
f_premio SortOrder No
f_proceso SortOrder No
tipo SortOrder No
mes_cumplido SortOrder No
_count premioCountOrderByAggregateInput No
_avg premioAvgOrderByAggregateInput No
_max premioMaxOrderByAggregateInput No
_min premioMinOrderByAggregateInput No
_sum premioSumOrderByAggregateInput No

premioScalarWhereWithAggregatesInput

Name Type Nullable
AND premioScalarWhereWithAggregatesInput | premioScalarWhereWithAggregatesInput[] No
OR premioScalarWhereWithAggregatesInput[] No
NOT premioScalarWhereWithAggregatesInput | premioScalarWhereWithAggregatesInput[] No
idPremio IntWithAggregatesFilter | Int No
nombre StringNullableWithAggregatesFilter | String | Null Yes
descripcion StringNullableWithAggregatesFilter | String | Null Yes
img StringNullableWithAggregatesFilter | String | Null Yes
estado IntNullableWithAggregatesFilter | Int | Null Yes
f_premio DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
f_proceso DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
tipo StringNullableWithAggregatesFilter | String | Null Yes
mes_cumplido IntNullableWithAggregatesFilter | Int | Null Yes

premio_personaWhereInput

Name Type Nullable
AND premio_personaWhereInput | premio_personaWhereInput[] No
OR premio_personaWhereInput[] No
NOT premio_personaWhereInput | premio_personaWhereInput[] No
idPremioPersona IntFilter | Int No
idPremio IntFilter | Int No
idPersona IntFilter | Int No
descripcion StringNullableFilter | String | Null Yes
fecha_entrega DateTimeNullableFilter | DateTime | Null Yes
tipo StringNullableFilter | String | Null Yes
estado IntFilter | Int No
usuario IntFilter | Int No
fecha_registro DateTimeFilter | DateTime No

premio_personaOrderByWithRelationInput

Name Type Nullable
idPremioPersona SortOrder No
idPremio SortOrder No
idPersona SortOrder No
descripcion SortOrder No
fecha_entrega SortOrder No
tipo SortOrder No
estado SortOrder No
usuario SortOrder No
fecha_registro SortOrder No

premio_personaWhereUniqueInput

Name Type Nullable
idPremioPersona Int No

premio_personaOrderByWithAggregationInput

Name Type Nullable
idPremioPersona SortOrder No
idPremio SortOrder No
idPersona SortOrder No
descripcion SortOrder No
fecha_entrega SortOrder No
tipo SortOrder No
estado SortOrder No
usuario SortOrder No
fecha_registro SortOrder No
_count premio_personaCountOrderByAggregateInput No
_avg premio_personaAvgOrderByAggregateInput No
_max premio_personaMaxOrderByAggregateInput No
_min premio_personaMinOrderByAggregateInput No
_sum premio_personaSumOrderByAggregateInput No

premio_personaScalarWhereWithAggregatesInput

Name Type Nullable
AND premio_personaScalarWhereWithAggregatesInput | premio_personaScalarWhereWithAggregatesInput[] No
OR premio_personaScalarWhereWithAggregatesInput[] No
NOT premio_personaScalarWhereWithAggregatesInput | premio_personaScalarWhereWithAggregatesInput[] No
idPremioPersona IntWithAggregatesFilter | Int No
idPremio IntWithAggregatesFilter | Int No
idPersona IntWithAggregatesFilter | Int No
descripcion StringNullableWithAggregatesFilter | String | Null Yes
fecha_entrega DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
tipo StringNullableWithAggregatesFilter | String | Null Yes
estado IntWithAggregatesFilter | Int No
usuario IntWithAggregatesFilter | Int No
fecha_registro DateTimeWithAggregatesFilter | DateTime No

salaWhereInput

Name Type Nullable
AND salaWhereInput | salaWhereInput[] No
OR salaWhereInput[] No
NOT salaWhereInput | salaWhereInput[] No
idSala IntFilter | Int No
title StringNullableFilter | String | Null Yes
descripcion StringNullableFilter | String | Null Yes
color StringNullableFilter | String | Null Yes
textColor StringNullableFilter | String | Null Yes
start StringNullableFilter | String | Null Yes
end StringNullableFilter | String | Null Yes
estado IntNullableFilter | Int | Null Yes
f_creacion DateTimeNullableFilter | DateTime | Null Yes
usuario IntNullableFilter | Int | Null Yes

salaOrderByWithRelationInput

Name Type Nullable
idSala SortOrder No
title SortOrder No
descripcion SortOrder No
color SortOrder No
textColor SortOrder No
start SortOrder No
end SortOrder No
estado SortOrder No
f_creacion SortOrder No
usuario SortOrder No

salaWhereUniqueInput

Name Type Nullable
idSala Int No

salaOrderByWithAggregationInput

Name Type Nullable
idSala SortOrder No
title SortOrder No
descripcion SortOrder No
color SortOrder No
textColor SortOrder No
start SortOrder No
end SortOrder No
estado SortOrder No
f_creacion SortOrder No
usuario SortOrder No
_count salaCountOrderByAggregateInput No
_avg salaAvgOrderByAggregateInput No
_max salaMaxOrderByAggregateInput No
_min salaMinOrderByAggregateInput No
_sum salaSumOrderByAggregateInput No

salaScalarWhereWithAggregatesInput

Name Type Nullable
AND salaScalarWhereWithAggregatesInput | salaScalarWhereWithAggregatesInput[] No
OR salaScalarWhereWithAggregatesInput[] No
NOT salaScalarWhereWithAggregatesInput | salaScalarWhereWithAggregatesInput[] No
idSala IntWithAggregatesFilter | Int No
title StringNullableWithAggregatesFilter | String | Null Yes
descripcion StringNullableWithAggregatesFilter | String | Null Yes
color StringNullableWithAggregatesFilter | String | Null Yes
textColor StringNullableWithAggregatesFilter | String | Null Yes
start StringNullableWithAggregatesFilter | String | Null Yes
end StringNullableWithAggregatesFilter | String | Null Yes
estado IntNullableWithAggregatesFilter | Int | Null Yes
f_creacion DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
usuario IntNullableWithAggregatesFilter | Int | Null Yes

sala_copyWhereInput

Name Type Nullable
AND sala_copyWhereInput | sala_copyWhereInput[] No
OR sala_copyWhereInput[] No
NOT sala_copyWhereInput | sala_copyWhereInput[] No
idSala IntFilter | Int No
title StringNullableFilter | String | Null Yes
descripcion StringNullableFilter | String | Null Yes
color StringNullableFilter | String | Null Yes
textColor StringNullableFilter | String | Null Yes
start DateTimeNullableFilter | DateTime | Null Yes
end DateTimeNullableFilter | DateTime | Null Yes
estado IntNullableFilter | Int | Null Yes
f_creacion DateTimeNullableFilter | DateTime | Null Yes
usuario IntNullableFilter | Int | Null Yes

sala_copyOrderByWithRelationInput

Name Type Nullable
idSala SortOrder No
title SortOrder No
descripcion SortOrder No
color SortOrder No
textColor SortOrder No
start SortOrder No
end SortOrder No
estado SortOrder No
f_creacion SortOrder No
usuario SortOrder No

sala_copyWhereUniqueInput

Name Type Nullable
idSala Int No

sala_copyOrderByWithAggregationInput

Name Type Nullable
idSala SortOrder No
title SortOrder No
descripcion SortOrder No
color SortOrder No
textColor SortOrder No
start SortOrder No
end SortOrder No
estado SortOrder No
f_creacion SortOrder No
usuario SortOrder No
_count sala_copyCountOrderByAggregateInput No
_avg sala_copyAvgOrderByAggregateInput No
_max sala_copyMaxOrderByAggregateInput No
_min sala_copyMinOrderByAggregateInput No
_sum sala_copySumOrderByAggregateInput No

sala_copyScalarWhereWithAggregatesInput

Name Type Nullable
AND sala_copyScalarWhereWithAggregatesInput | sala_copyScalarWhereWithAggregatesInput[] No
OR sala_copyScalarWhereWithAggregatesInput[] No
NOT sala_copyScalarWhereWithAggregatesInput | sala_copyScalarWhereWithAggregatesInput[] No
idSala IntWithAggregatesFilter | Int No
title StringNullableWithAggregatesFilter | String | Null Yes
descripcion StringNullableWithAggregatesFilter | String | Null Yes
color StringNullableWithAggregatesFilter | String | Null Yes
textColor StringNullableWithAggregatesFilter | String | Null Yes
start DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
end DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
estado IntNullableWithAggregatesFilter | Int | Null Yes
f_creacion DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
usuario IntNullableWithAggregatesFilter | Int | Null Yes

sectorWhereInput

Name Type Nullable
AND sectorWhereInput | sectorWhereInput[] No
OR sectorWhereInput[] No
NOT sectorWhereInput | sectorWhereInput[] No
idSector IntFilter | Int No
nombre StringNullableFilter | String | Null Yes
estado IntNullableFilter | Int | Null Yes

sectorOrderByWithRelationInput

Name Type Nullable
idSector SortOrder No
nombre SortOrder No
estado SortOrder No

sectorWhereUniqueInput

Name Type Nullable
idSector Int No

sectorOrderByWithAggregationInput

Name Type Nullable
idSector SortOrder No
nombre SortOrder No
estado SortOrder No
_count sectorCountOrderByAggregateInput No
_avg sectorAvgOrderByAggregateInput No
_max sectorMaxOrderByAggregateInput No
_min sectorMinOrderByAggregateInput No
_sum sectorSumOrderByAggregateInput No


seleccion_personalWhereInput

Name Type Nullable
AND seleccion_personalWhereInput | seleccion_personalWhereInput[] No
OR seleccion_personalWhereInput[] No
NOT seleccion_personalWhereInput | seleccion_personalWhereInput[] No
idSeleccion_personal IntFilter | Int No
nombre StringNullableFilter | String | Null Yes
apellido StringNullableFilter | String | Null Yes
domicilio StringNullableFilter | String | Null Yes
contacto StringNullableFilter | String | Null Yes
fuente_reclutamiento StringNullableFilter | String | Null Yes
descripcion StringNullableFilter | String | Null Yes
estado IntNullableFilter | Int | Null Yes
f_proceso DateTimeNullableFilter | DateTime | Null Yes
meta_estado StringNullableFilter | String | Null Yes
fecha_meta_estado DateTimeNullableFilter | DateTime | Null Yes
sector IntNullableFilter | Int | Null Yes

seleccion_personalOrderByWithRelationInput

Name Type Nullable
idSeleccion_personal SortOrder No
nombre SortOrder No
apellido SortOrder No
domicilio SortOrder No
contacto SortOrder No
fuente_reclutamiento SortOrder No
descripcion SortOrder No
estado SortOrder No
f_proceso SortOrder No
meta_estado SortOrder No
fecha_meta_estado SortOrder No
sector SortOrder No

seleccion_personalWhereUniqueInput

Name Type Nullable
idSeleccion_personal Int No

seleccion_personalOrderByWithAggregationInput

Name Type Nullable
idSeleccion_personal SortOrder No
nombre SortOrder No
apellido SortOrder No
domicilio SortOrder No
contacto SortOrder No
fuente_reclutamiento SortOrder No
descripcion SortOrder No
estado SortOrder No
f_proceso SortOrder No
meta_estado SortOrder No
fecha_meta_estado SortOrder No
sector SortOrder No
_count seleccion_personalCountOrderByAggregateInput No
_avg seleccion_personalAvgOrderByAggregateInput No
_max seleccion_personalMaxOrderByAggregateInput No
_min seleccion_personalMinOrderByAggregateInput No
_sum seleccion_personalSumOrderByAggregateInput No

seleccion_personalScalarWhereWithAggregatesInput

Name Type Nullable
AND seleccion_personalScalarWhereWithAggregatesInput | seleccion_personalScalarWhereWithAggregatesInput[] No
OR seleccion_personalScalarWhereWithAggregatesInput[] No
NOT seleccion_personalScalarWhereWithAggregatesInput | seleccion_personalScalarWhereWithAggregatesInput[] No
idSeleccion_personal IntWithAggregatesFilter | Int No
nombre StringNullableWithAggregatesFilter | String | Null Yes
apellido StringNullableWithAggregatesFilter | String | Null Yes
domicilio StringNullableWithAggregatesFilter | String | Null Yes
contacto StringNullableWithAggregatesFilter | String | Null Yes
fuente_reclutamiento StringNullableWithAggregatesFilter | String | Null Yes
descripcion StringNullableWithAggregatesFilter | String | Null Yes
estado IntNullableWithAggregatesFilter | Int | Null Yes
f_proceso DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
meta_estado StringNullableWithAggregatesFilter | String | Null Yes
fecha_meta_estado DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
sector IntNullableWithAggregatesFilter | Int | Null Yes

slot_testWhereInput

Name Type Nullable
AND slot_testWhereInput | slot_testWhereInput[] No
OR slot_testWhereInput[] No
NOT slot_testWhereInput | slot_testWhereInput[] No
tst_id IntFilter | Int No
tst_egm IntFilter | Int No
tst_srl_acept StringFilter | String No
tst_srl_impr StringFilter | String No
tst_srl_monit StringFilter | String No
tst_srl_bckpln StringFilter | String No
tst_srl_mother StringFilter | String No
tst_hora_fecha DateTimeFilter | DateTime No

slot_testOrderByWithRelationInput

Name Type Nullable
tst_id SortOrder No
tst_egm SortOrder No
tst_srl_acept SortOrder No
tst_srl_impr SortOrder No
tst_srl_monit SortOrder No
tst_srl_bckpln SortOrder No
tst_srl_mother SortOrder No
tst_hora_fecha SortOrder No

slot_testWhereUniqueInput

Name Type Nullable
tst_id_tst_egm slot_testTst_idTst_egmCompoundUniqueInput No

slot_testOrderByWithAggregationInput

Name Type Nullable
tst_id SortOrder No
tst_egm SortOrder No
tst_srl_acept SortOrder No
tst_srl_impr SortOrder No
tst_srl_monit SortOrder No
tst_srl_bckpln SortOrder No
tst_srl_mother SortOrder No
tst_hora_fecha SortOrder No
_count slot_testCountOrderByAggregateInput No
_avg slot_testAvgOrderByAggregateInput No
_max slot_testMaxOrderByAggregateInput No
_min slot_testMinOrderByAggregateInput No
_sum slot_testSumOrderByAggregateInput No

slot_testScalarWhereWithAggregatesInput

Name Type Nullable
AND slot_testScalarWhereWithAggregatesInput | slot_testScalarWhereWithAggregatesInput[] No
OR slot_testScalarWhereWithAggregatesInput[] No
NOT slot_testScalarWhereWithAggregatesInput | slot_testScalarWhereWithAggregatesInput[] No
tst_id IntWithAggregatesFilter | Int No
tst_egm IntWithAggregatesFilter | Int No
tst_srl_acept StringWithAggregatesFilter | String No
tst_srl_impr StringWithAggregatesFilter | String No
tst_srl_monit StringWithAggregatesFilter | String No
tst_srl_bckpln StringWithAggregatesFilter | String No
tst_srl_mother StringWithAggregatesFilter | String No
tst_hora_fecha DateTimeWithAggregatesFilter | DateTime No

stock_bejermanWhereInput

Name Type Nullable
AND stock_bejermanWhereInput | stock_bejermanWhereInput[] No
OR stock_bejermanWhereInput[] No
NOT stock_bejermanWhereInput | stock_bejermanWhereInput[] No
stkart_codgen StringNullableFilter | String | Null Yes
skart_codEle1 StringNullableFilter | String | Null Yes
skart_codEle2 StringNullableFilter | String | Null Yes
skart_codEle3 StringNullableFilter | String | Null Yes
deposito StringNullableFilter | String | Null Yes
cantidad StringNullableFilter | String | Null Yes
f_carga_bejerman StringNullableFilter | String | Null Yes
autor StringNullableFilter | String | Null Yes
id_stock_bejerman IntFilter | Int No

stock_bejermanOrderByWithRelationInput

Name Type Nullable
stkart_codgen SortOrder No
skart_codEle1 SortOrder No
skart_codEle2 SortOrder No
skart_codEle3 SortOrder No
deposito SortOrder No
cantidad SortOrder No
f_carga_bejerman SortOrder No
autor SortOrder No
id_stock_bejerman SortOrder No

stock_bejermanWhereUniqueInput

Name Type Nullable
id_stock_bejerman Int No

stock_bejermanOrderByWithAggregationInput

Name Type Nullable
stkart_codgen SortOrder No
skart_codEle1 SortOrder No
skart_codEle2 SortOrder No
skart_codEle3 SortOrder No
deposito SortOrder No
cantidad SortOrder No
f_carga_bejerman SortOrder No
autor SortOrder No
id_stock_bejerman SortOrder No
_count stock_bejermanCountOrderByAggregateInput No
_avg stock_bejermanAvgOrderByAggregateInput No
_max stock_bejermanMaxOrderByAggregateInput No
_min stock_bejermanMinOrderByAggregateInput No
_sum stock_bejermanSumOrderByAggregateInput No

stock_bejermanScalarWhereWithAggregatesInput

Name Type Nullable
AND stock_bejermanScalarWhereWithAggregatesInput | stock_bejermanScalarWhereWithAggregatesInput[] No
OR stock_bejermanScalarWhereWithAggregatesInput[] No
NOT stock_bejermanScalarWhereWithAggregatesInput | stock_bejermanScalarWhereWithAggregatesInput[] No
stkart_codgen StringNullableWithAggregatesFilter | String | Null Yes
skart_codEle1 StringNullableWithAggregatesFilter | String | Null Yes
skart_codEle2 StringNullableWithAggregatesFilter | String | Null Yes
skart_codEle3 StringNullableWithAggregatesFilter | String | Null Yes
deposito StringNullableWithAggregatesFilter | String | Null Yes
cantidad StringNullableWithAggregatesFilter | String | Null Yes
f_carga_bejerman StringNullableWithAggregatesFilter | String | Null Yes
autor StringNullableWithAggregatesFilter | String | Null Yes
id_stock_bejerman IntWithAggregatesFilter | Int No

temaWhereInput

Name Type Nullable
AND temaWhereInput | temaWhereInput[] No
OR temaWhereInput[] No
NOT temaWhereInput | temaWhereInput[] No
idTema IntFilter | Int No
nombre StringNullableFilter | String | Null Yes
estado IntNullableFilter | Int | Null Yes

temaOrderByWithRelationInput

Name Type Nullable
idTema SortOrder No
nombre SortOrder No
estado SortOrder No

temaWhereUniqueInput

Name Type Nullable
idTema Int No

temaOrderByWithAggregationInput

Name Type Nullable
idTema SortOrder No
nombre SortOrder No
estado SortOrder No
_count temaCountOrderByAggregateInput No
_avg temaAvgOrderByAggregateInput No
_max temaMaxOrderByAggregateInput No
_min temaMinOrderByAggregateInput No
_sum temaSumOrderByAggregateInput No


ticketWhereInput

Name Type Nullable
AND ticketWhereInput | ticketWhereInput[] No
OR ticketWhereInput[] No
NOT ticketWhereInput | ticketWhereInput[] No
idTicket IntFilter | Int No
solicita IntFilter | Int No
idAsignado IntFilter | Int No
referencia IntFilter | Int No
descripcion StringNullableFilter | String | Null Yes
prioridad StringNullableFilter | String | Null Yes
estado BoolNullableFilter | Boolean | Null Yes
f_solicitud DateTimeNullableFilter | DateTime | Null Yes
f_respuesta DateTimeNullableFilter | DateTime | Null Yes
modulo StringNullableFilter | String | Null Yes
submodulo StringNullableFilter | String | Null Yes
categoria StringNullableFilter | String | Null Yes
tipo StringNullableFilter | String | Null Yes
f_cierre DateTimeFilter | DateTime No
f_proceso DateTimeFilter | DateTime No
f_atencion DateTimeFilter | DateTime No
sector IntNullableFilter | Int | Null Yes

ticketOrderByWithRelationInput

Name Type Nullable
idTicket SortOrder No
solicita SortOrder No
idAsignado SortOrder No
referencia SortOrder No
descripcion SortOrder No
prioridad SortOrder No
estado SortOrder No
f_solicitud SortOrder No
f_respuesta SortOrder No
modulo SortOrder No
submodulo SortOrder No
categoria SortOrder No
tipo SortOrder No
f_cierre SortOrder No
f_proceso SortOrder No
f_atencion SortOrder No
sector SortOrder No

ticketWhereUniqueInput

Name Type Nullable
idTicket Int No

ticketOrderByWithAggregationInput

Name Type Nullable
idTicket SortOrder No
solicita SortOrder No
idAsignado SortOrder No
referencia SortOrder No
descripcion SortOrder No
prioridad SortOrder No
estado SortOrder No
f_solicitud SortOrder No
f_respuesta SortOrder No
modulo SortOrder No
submodulo SortOrder No
categoria SortOrder No
tipo SortOrder No
f_cierre SortOrder No
f_proceso SortOrder No
f_atencion SortOrder No
sector SortOrder No
_count ticketCountOrderByAggregateInput No
_avg ticketAvgOrderByAggregateInput No
_max ticketMaxOrderByAggregateInput No
_min ticketMinOrderByAggregateInput No
_sum ticketSumOrderByAggregateInput No

ticketScalarWhereWithAggregatesInput

Name Type Nullable
AND ticketScalarWhereWithAggregatesInput | ticketScalarWhereWithAggregatesInput[] No
OR ticketScalarWhereWithAggregatesInput[] No
NOT ticketScalarWhereWithAggregatesInput | ticketScalarWhereWithAggregatesInput[] No
idTicket IntWithAggregatesFilter | Int No
solicita IntWithAggregatesFilter | Int No
idAsignado IntWithAggregatesFilter | Int No
referencia IntWithAggregatesFilter | Int No
descripcion StringNullableWithAggregatesFilter | String | Null Yes
prioridad StringNullableWithAggregatesFilter | String | Null Yes
estado BoolNullableWithAggregatesFilter | Boolean | Null Yes
f_solicitud DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
f_respuesta DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
modulo StringNullableWithAggregatesFilter | String | Null Yes
submodulo StringNullableWithAggregatesFilter | String | Null Yes
categoria StringNullableWithAggregatesFilter | String | Null Yes
tipo StringNullableWithAggregatesFilter | String | Null Yes
f_cierre DateTimeWithAggregatesFilter | DateTime No
f_proceso DateTimeWithAggregatesFilter | DateTime No
f_atencion DateTimeWithAggregatesFilter | DateTime No
sector IntNullableWithAggregatesFilter | Int | Null Yes

tituloWhereInput

Name Type Nullable
AND tituloWhereInput | tituloWhereInput[] No
OR tituloWhereInput[] No
NOT tituloWhereInput | tituloWhereInput[] No
idTitulo IntFilter | Int No
nombre StringNullableFilter | String | Null Yes
estado IntNullableFilter | Int | Null Yes

tituloOrderByWithRelationInput

Name Type Nullable
idTitulo SortOrder No
nombre SortOrder No
estado SortOrder No

tituloWhereUniqueInput

Name Type Nullable
idTitulo Int No

tituloOrderByWithAggregationInput

Name Type Nullable
idTitulo SortOrder No
nombre SortOrder No
estado SortOrder No
_count tituloCountOrderByAggregateInput No
_avg tituloAvgOrderByAggregateInput No
_max tituloMaxOrderByAggregateInput No
_min tituloMinOrderByAggregateInput No
_sum tituloSumOrderByAggregateInput No


uniformeWhereInput

Name Type Nullable
AND uniformeWhereInput | uniformeWhereInput[] No
OR uniformeWhereInput[] No
NOT uniformeWhereInput | uniformeWhereInput[] No
idUniforme IntFilter | Int No
prenda StringNullableFilter | String | Null Yes
tipo_prenda StringNullableFilter | String | Null Yes
talle StringNullableFilter | String | Null Yes
cantidad IntNullableFilter | Int | Null Yes
estado IntNullableFilter | Int | Null Yes

uniformeOrderByWithRelationInput

Name Type Nullable
idUniforme SortOrder No
prenda SortOrder No
tipo_prenda SortOrder No
talle SortOrder No
cantidad SortOrder No
estado SortOrder No

uniformeWhereUniqueInput

Name Type Nullable
idUniforme Int No

uniformeOrderByWithAggregationInput

Name Type Nullable
idUniforme SortOrder No
prenda SortOrder No
tipo_prenda SortOrder No
talle SortOrder No
cantidad SortOrder No
estado SortOrder No
_count uniformeCountOrderByAggregateInput No
_avg uniformeAvgOrderByAggregateInput No
_max uniformeMaxOrderByAggregateInput No
_min uniformeMinOrderByAggregateInput No
_sum uniformeSumOrderByAggregateInput No


uniforme_has_personaWhereInput

Name Type Nullable
AND uniforme_has_personaWhereInput | uniforme_has_personaWhereInput[] No
OR uniforme_has_personaWhereInput[] No
NOT uniforme_has_personaWhereInput | uniforme_has_personaWhereInput[] No
idUniforme_has_persona IntFilter | Int No
idUniforme StringFilter | String No
idPersona IntFilter | Int No
f_proceso DateTimeNullableFilter | DateTime | Null Yes
detalle StringNullableFilter | String | Null Yes
descripcion StringNullableFilter | String | Null Yes
usuario IntNullableFilter | Int | Null Yes
estado IntNullableFilter | Int | Null Yes

uniforme_has_personaOrderByWithRelationInput

Name Type Nullable
idUniforme_has_persona SortOrder No
idUniforme SortOrder No
idPersona SortOrder No
f_proceso SortOrder No
detalle SortOrder No
descripcion SortOrder No
usuario SortOrder No
estado SortOrder No

uniforme_has_personaWhereUniqueInput

Name Type Nullable
idUniforme_has_persona Int No

uniforme_has_personaOrderByWithAggregationInput

Name Type Nullable
idUniforme_has_persona SortOrder No
idUniforme SortOrder No
idPersona SortOrder No
f_proceso SortOrder No
detalle SortOrder No
descripcion SortOrder No
usuario SortOrder No
estado SortOrder No
_count uniforme_has_personaCountOrderByAggregateInput No
_avg uniforme_has_personaAvgOrderByAggregateInput No
_max uniforme_has_personaMaxOrderByAggregateInput No
_min uniforme_has_personaMinOrderByAggregateInput No
_sum uniforme_has_personaSumOrderByAggregateInput No

uniforme_has_personaScalarWhereWithAggregatesInput

Name Type Nullable
AND uniforme_has_personaScalarWhereWithAggregatesInput | uniforme_has_personaScalarWhereWithAggregatesInput[] No
OR uniforme_has_personaScalarWhereWithAggregatesInput[] No
NOT uniforme_has_personaScalarWhereWithAggregatesInput | uniforme_has_personaScalarWhereWithAggregatesInput[] No
idUniforme_has_persona IntWithAggregatesFilter | Int No
idUniforme StringWithAggregatesFilter | String No
idPersona IntWithAggregatesFilter | Int No
f_proceso DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
detalle StringNullableWithAggregatesFilter | String | Null Yes
descripcion StringNullableWithAggregatesFilter | String | Null Yes
usuario IntNullableWithAggregatesFilter | Int | Null Yes
estado IntNullableWithAggregatesFilter | Int | Null Yes

usuariosWhereInput

Name Type Nullable
AND usuariosWhereInput | usuariosWhereInput[] No
OR usuariosWhereInput[] No
NOT usuariosWhereInput | usuariosWhereInput[] No
idUsuarios IntFilter | Int No
nombre StringFilter | String No
usr StringFilter | String No
email StringFilter | String No
clave StringFilter | String No
celular StringNullableFilter | String | Null Yes
estado BoolFilter | Boolean No
permisos_id IntFilter | Int No
fecha_registro DateTimeFilter | DateTime No
legajo StringNullableFilter | String | Null Yes

usuariosOrderByWithRelationInput

Name Type Nullable
idUsuarios SortOrder No
nombre SortOrder No
usr SortOrder No
email SortOrder No
clave SortOrder No
celular SortOrder No
estado SortOrder No
permisos_id SortOrder No
fecha_registro SortOrder No
legajo SortOrder No

usuariosWhereUniqueInput

Name Type Nullable
idUsuarios Int No

usuariosOrderByWithAggregationInput

Name Type Nullable
idUsuarios SortOrder No
nombre SortOrder No
usr SortOrder No
email SortOrder No
clave SortOrder No
celular SortOrder No
estado SortOrder No
permisos_id SortOrder No
fecha_registro SortOrder No
legajo SortOrder No
_count usuariosCountOrderByAggregateInput No
_avg usuariosAvgOrderByAggregateInput No
_max usuariosMaxOrderByAggregateInput No
_min usuariosMinOrderByAggregateInput No
_sum usuariosSumOrderByAggregateInput No

usuariosScalarWhereWithAggregatesInput

Name Type Nullable
AND usuariosScalarWhereWithAggregatesInput | usuariosScalarWhereWithAggregatesInput[] No
OR usuariosScalarWhereWithAggregatesInput[] No
NOT usuariosScalarWhereWithAggregatesInput | usuariosScalarWhereWithAggregatesInput[] No
idUsuarios IntWithAggregatesFilter | Int No
nombre StringWithAggregatesFilter | String No
usr StringWithAggregatesFilter | String No
email StringWithAggregatesFilter | String No
clave StringWithAggregatesFilter | String No
celular StringNullableWithAggregatesFilter | String | Null Yes
estado BoolWithAggregatesFilter | Boolean No
permisos_id IntWithAggregatesFilter | Int No
fecha_registro DateTimeWithAggregatesFilter | DateTime No
legajo StringNullableWithAggregatesFilter | String | Null Yes

vacuna_personaWhereInput

Name Type Nullable
AND vacuna_personaWhereInput | vacuna_personaWhereInput[] No
OR vacuna_personaWhereInput[] No
NOT vacuna_personaWhereInput | vacuna_personaWhereInput[] No
idVacunaPersona IntFilter | Int No
idPersona StringFilter | String No
tipo StringNullableFilter | String | Null Yes
dosis StringNullableFilter | String | Null Yes
estado IntNullableFilter | Int | Null Yes
marca StringNullableFilter | String | Null Yes
fecha_vacuna DateTimeNullableFilter | DateTime | Null Yes
fecha_registro DateTimeNullableFilter | DateTime | Null Yes

vacuna_personaOrderByWithRelationInput

Name Type Nullable
idVacunaPersona SortOrder No
idPersona SortOrder No
tipo SortOrder No
dosis SortOrder No
estado SortOrder No
marca SortOrder No
fecha_vacuna SortOrder No
fecha_registro SortOrder No

vacuna_personaWhereUniqueInput

Name Type Nullable
idVacunaPersona Int No

vacuna_personaOrderByWithAggregationInput

Name Type Nullable
idVacunaPersona SortOrder No
idPersona SortOrder No
tipo SortOrder No
dosis SortOrder No
estado SortOrder No
marca SortOrder No
fecha_vacuna SortOrder No
fecha_registro SortOrder No
_count vacuna_personaCountOrderByAggregateInput No
_avg vacuna_personaAvgOrderByAggregateInput No
_max vacuna_personaMaxOrderByAggregateInput No
_min vacuna_personaMinOrderByAggregateInput No
_sum vacuna_personaSumOrderByAggregateInput No

vacuna_personaScalarWhereWithAggregatesInput

Name Type Nullable
AND vacuna_personaScalarWhereWithAggregatesInput | vacuna_personaScalarWhereWithAggregatesInput[] No
OR vacuna_personaScalarWhereWithAggregatesInput[] No
NOT vacuna_personaScalarWhereWithAggregatesInput | vacuna_personaScalarWhereWithAggregatesInput[] No
idVacunaPersona IntWithAggregatesFilter | Int No
idPersona StringWithAggregatesFilter | String No
tipo StringNullableWithAggregatesFilter | String | Null Yes
dosis StringNullableWithAggregatesFilter | String | Null Yes
estado IntNullableWithAggregatesFilter | Int | Null Yes
marca StringNullableWithAggregatesFilter | String | Null Yes
fecha_vacuna DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
fecha_registro DateTimeNullableWithAggregatesFilter | DateTime | Null Yes

valormenuWhereInput

Name Type Nullable
AND valormenuWhereInput | valormenuWhereInput[] No
OR valormenuWhereInput[] No
NOT valormenuWhereInput | valormenuWhereInput[] No
idValorMenu IntFilter | Int No
importe_externo DecimalNullableFilter | Decimal | Null Yes
f_registro DateTimeNullableFilter | DateTime | Null Yes
usuario IntNullableFilter | Int | Null Yes
estado IntNullableFilter | Int | Null Yes
importe_interno DecimalNullableFilter | Decimal | Null Yes

valormenuOrderByWithRelationInput

Name Type Nullable
idValorMenu SortOrder No
importe_externo SortOrder No
f_registro SortOrder No
usuario SortOrder No
estado SortOrder No
importe_interno SortOrder No

valormenuWhereUniqueInput

Name Type Nullable
idValorMenu Int No

valormenuOrderByWithAggregationInput

Name Type Nullable
idValorMenu SortOrder No
importe_externo SortOrder No
f_registro SortOrder No
usuario SortOrder No
estado SortOrder No
importe_interno SortOrder No
_count valormenuCountOrderByAggregateInput No
_avg valormenuAvgOrderByAggregateInput No
_max valormenuMaxOrderByAggregateInput No
_min valormenuMinOrderByAggregateInput No
_sum valormenuSumOrderByAggregateInput No


articulo_deposito_importacionCreateInput

Name Type Nullable
id_articulo_deposito_importacion Int No
cod_deposito String | Null Yes

articulo_deposito_importacionUncheckedCreateInput

Name Type Nullable
id_articulo_deposito_importacion Int No
cod_deposito String | Null Yes

articulo_deposito_importacionUpdateInput

Name Type Nullable
id_articulo_deposito_importacion Int | IntFieldUpdateOperationsInput No
cod_deposito String | NullableStringFieldUpdateOperationsInput | Null Yes

articulo_deposito_importacionUncheckedUpdateInput

Name Type Nullable
id_articulo_deposito_importacion Int | IntFieldUpdateOperationsInput No
cod_deposito String | NullableStringFieldUpdateOperationsInput | Null Yes

articulo_deposito_importacionCreateManyInput

Name Type Nullable
id_articulo_deposito_importacion Int No
cod_deposito String | Null Yes

articulo_deposito_importacionUpdateManyMutationInput

Name Type Nullable
id_articulo_deposito_importacion Int | IntFieldUpdateOperationsInput No
cod_deposito String | NullableStringFieldUpdateOperationsInput | Null Yes

articulo_deposito_importacionUncheckedUpdateManyInput

Name Type Nullable
id_articulo_deposito_importacion Int | IntFieldUpdateOperationsInput No
cod_deposito String | NullableStringFieldUpdateOperationsInput | Null Yes

articulosCreateInput

Name Type Nullable
nombre String | Null Yes
categoria Int | Null Yes
stock Int | Null Yes
estado Int | Null Yes
precioCompra Decimal | Null Yes
precioVenta Decimal | Null Yes
stockMinimo Int | Null Yes
entrada Boolean | Null Yes
salida Boolean | Null Yes
tipo_modelo String | Null Yes
descripcion String | Null Yes
serie String | Null Yes
codigo String | Null Yes

articulosUncheckedCreateInput

Name Type Nullable
idArticulo Int No
nombre String | Null Yes
categoria Int | Null Yes
stock Int | Null Yes
estado Int | Null Yes
precioCompra Decimal | Null Yes
precioVenta Decimal | Null Yes
stockMinimo Int | Null Yes
entrada Boolean | Null Yes
salida Boolean | Null Yes
tipo_modelo String | Null Yes
descripcion String | Null Yes
serie String | Null Yes
codigo String | Null Yes

articulosUpdateInput

Name Type Nullable
nombre String | NullableStringFieldUpdateOperationsInput | Null Yes
categoria Int | NullableIntFieldUpdateOperationsInput | Null Yes
stock Int | NullableIntFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
precioCompra Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
precioVenta Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
stockMinimo Int | NullableIntFieldUpdateOperationsInput | Null Yes
entrada Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
salida Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
tipo_modelo String | NullableStringFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
serie String | NullableStringFieldUpdateOperationsInput | Null Yes
codigo String | NullableStringFieldUpdateOperationsInput | Null Yes

articulosUncheckedUpdateInput

Name Type Nullable
idArticulo Int | IntFieldUpdateOperationsInput No
nombre String | NullableStringFieldUpdateOperationsInput | Null Yes
categoria Int | NullableIntFieldUpdateOperationsInput | Null Yes
stock Int | NullableIntFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
precioCompra Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
precioVenta Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
stockMinimo Int | NullableIntFieldUpdateOperationsInput | Null Yes
entrada Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
salida Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
tipo_modelo String | NullableStringFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
serie String | NullableStringFieldUpdateOperationsInput | Null Yes
codigo String | NullableStringFieldUpdateOperationsInput | Null Yes

articulosCreateManyInput

Name Type Nullable
idArticulo Int No
nombre String | Null Yes
categoria Int | Null Yes
stock Int | Null Yes
estado Int | Null Yes
precioCompra Decimal | Null Yes
precioVenta Decimal | Null Yes
stockMinimo Int | Null Yes
entrada Boolean | Null Yes
salida Boolean | Null Yes
tipo_modelo String | Null Yes
descripcion String | Null Yes
serie String | Null Yes
codigo String | Null Yes

articulosUpdateManyMutationInput

Name Type Nullable
nombre String | NullableStringFieldUpdateOperationsInput | Null Yes
categoria Int | NullableIntFieldUpdateOperationsInput | Null Yes
stock Int | NullableIntFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
precioCompra Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
precioVenta Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
stockMinimo Int | NullableIntFieldUpdateOperationsInput | Null Yes
entrada Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
salida Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
tipo_modelo String | NullableStringFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
serie String | NullableStringFieldUpdateOperationsInput | Null Yes
codigo String | NullableStringFieldUpdateOperationsInput | Null Yes

articulosUncheckedUpdateManyInput

Name Type Nullable
idArticulo Int | IntFieldUpdateOperationsInput No
nombre String | NullableStringFieldUpdateOperationsInput | Null Yes
categoria Int | NullableIntFieldUpdateOperationsInput | Null Yes
stock Int | NullableIntFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
precioCompra Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
precioVenta Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
stockMinimo Int | NullableIntFieldUpdateOperationsInput | Null Yes
entrada Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
salida Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
tipo_modelo String | NullableStringFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
serie String | NullableStringFieldUpdateOperationsInput | Null Yes
codigo String | NullableStringFieldUpdateOperationsInput | Null Yes

articulos_laboratorioCreateInput

Name Type Nullable
articulo Int No
maquina Int No
cantidad Int No
usuario Int | Null Yes
fecha_hora DateTime | Null Yes
asignado Int | Null Yes
estado Int | Null Yes
reparados Int | Null Yes

articulos_laboratorioUncheckedCreateInput

Name Type Nullable
idArticuloLaboratorio Int No
articulo Int No
maquina Int No
cantidad Int No
usuario Int | Null Yes
fecha_hora DateTime | Null Yes
asignado Int | Null Yes
estado Int | Null Yes
reparados Int | Null Yes

articulos_laboratorioUpdateInput

Name Type Nullable
articulo Int | IntFieldUpdateOperationsInput No
maquina Int | IntFieldUpdateOperationsInput No
cantidad Int | IntFieldUpdateOperationsInput No
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes
fecha_hora DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
asignado Int | NullableIntFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
reparados Int | NullableIntFieldUpdateOperationsInput | Null Yes

articulos_laboratorioUncheckedUpdateInput

Name Type Nullable
idArticuloLaboratorio Int | IntFieldUpdateOperationsInput No
articulo Int | IntFieldUpdateOperationsInput No
maquina Int | IntFieldUpdateOperationsInput No
cantidad Int | IntFieldUpdateOperationsInput No
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes
fecha_hora DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
asignado Int | NullableIntFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
reparados Int | NullableIntFieldUpdateOperationsInput | Null Yes

articulos_laboratorioCreateManyInput

Name Type Nullable
idArticuloLaboratorio Int No
articulo Int No
maquina Int No
cantidad Int No
usuario Int | Null Yes
fecha_hora DateTime | Null Yes
asignado Int | Null Yes
estado Int | Null Yes
reparados Int | Null Yes

articulos_laboratorioUpdateManyMutationInput

Name Type Nullable
articulo Int | IntFieldUpdateOperationsInput No
maquina Int | IntFieldUpdateOperationsInput No
cantidad Int | IntFieldUpdateOperationsInput No
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes
fecha_hora DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
asignado Int | NullableIntFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
reparados Int | NullableIntFieldUpdateOperationsInput | Null Yes

articulos_laboratorioUncheckedUpdateManyInput

Name Type Nullable
idArticuloLaboratorio Int | IntFieldUpdateOperationsInput No
articulo Int | IntFieldUpdateOperationsInput No
maquina Int | IntFieldUpdateOperationsInput No
cantidad Int | IntFieldUpdateOperationsInput No
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes
fecha_hora DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
asignado Int | NullableIntFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
reparados Int | NullableIntFieldUpdateOperationsInput | Null Yes

articulos_maquinasCreateInput

Name Type Nullable
maquina Int No
articulo Int No
cantidad Int No
usuario Int | Null Yes
fecha_hora DateTime | Null Yes
estado Int | Null Yes
fecha_salida DateTime | Null Yes
usuario_salida Int | Null Yes

articulos_maquinasUncheckedCreateInput

Name Type Nullable
idArticuloMaquina Int No
maquina Int No
articulo Int No
cantidad Int No
usuario Int | Null Yes
fecha_hora DateTime | Null Yes
estado Int | Null Yes
fecha_salida DateTime | Null Yes
usuario_salida Int | Null Yes

articulos_maquinasUpdateInput

Name Type Nullable
maquina Int | IntFieldUpdateOperationsInput No
articulo Int | IntFieldUpdateOperationsInput No
cantidad Int | IntFieldUpdateOperationsInput No
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes
fecha_hora DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
fecha_salida DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
usuario_salida Int | NullableIntFieldUpdateOperationsInput | Null Yes

articulos_maquinasUncheckedUpdateInput

Name Type Nullable
idArticuloMaquina Int | IntFieldUpdateOperationsInput No
maquina Int | IntFieldUpdateOperationsInput No
articulo Int | IntFieldUpdateOperationsInput No
cantidad Int | IntFieldUpdateOperationsInput No
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes
fecha_hora DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
fecha_salida DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
usuario_salida Int | NullableIntFieldUpdateOperationsInput | Null Yes

articulos_maquinasCreateManyInput

Name Type Nullable
idArticuloMaquina Int No
maquina Int No
articulo Int No
cantidad Int No
usuario Int | Null Yes
fecha_hora DateTime | Null Yes
estado Int | Null Yes
fecha_salida DateTime | Null Yes
usuario_salida Int | Null Yes

articulos_maquinasUpdateManyMutationInput

Name Type Nullable
maquina Int | IntFieldUpdateOperationsInput No
articulo Int | IntFieldUpdateOperationsInput No
cantidad Int | IntFieldUpdateOperationsInput No
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes
fecha_hora DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
fecha_salida DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
usuario_salida Int | NullableIntFieldUpdateOperationsInput | Null Yes

articulos_maquinasUncheckedUpdateManyInput

Name Type Nullable
idArticuloMaquina Int | IntFieldUpdateOperationsInput No
maquina Int | IntFieldUpdateOperationsInput No
articulo Int | IntFieldUpdateOperationsInput No
cantidad Int | IntFieldUpdateOperationsInput No
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes
fecha_hora DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
fecha_salida DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
usuario_salida Int | NullableIntFieldUpdateOperationsInput | Null Yes

articulos_saveCreateInput

Name Type Nullable
nombre String No
tipo_modelo String | Null Yes

articulos_saveUncheckedCreateInput

Name Type Nullable
nombre String No
tipo_modelo String | Null Yes

articulos_saveUpdateInput

Name Type Nullable
nombre String | StringFieldUpdateOperationsInput No
tipo_modelo String | NullableStringFieldUpdateOperationsInput | Null Yes

articulos_saveUncheckedUpdateInput

Name Type Nullable
nombre String | StringFieldUpdateOperationsInput No
tipo_modelo String | NullableStringFieldUpdateOperationsInput | Null Yes

articulos_saveCreateManyInput

Name Type Nullable
nombre String No
tipo_modelo String | Null Yes

articulos_saveUpdateManyMutationInput

Name Type Nullable
nombre String | StringFieldUpdateOperationsInput No
tipo_modelo String | NullableStringFieldUpdateOperationsInput | Null Yes

articulos_saveUncheckedUpdateManyInput

Name Type Nullable
nombre String | StringFieldUpdateOperationsInput No
tipo_modelo String | NullableStringFieldUpdateOperationsInput | Null Yes

calendariomenuCreateInput

Name Type Nullable
legajo String | Null Yes
persona_str String | Null Yes
title String | Null Yes
descripcion String | Null Yes
start DateTime | Null Yes
color String | Null Yes
textColor String | Null Yes
end DateTime | Null Yes
idMenu Int | Null Yes
estado Int | Null Yes
f_registro DateTime | Null Yes
idMenuBingo Int | Null Yes
turno String | Null Yes

calendariomenuUncheckedCreateInput

Name Type Nullable
idCalendarioMenu Int No
legajo String | Null Yes
persona_str String | Null Yes
title String | Null Yes
descripcion String | Null Yes
start DateTime | Null Yes
color String | Null Yes
textColor String | Null Yes
end DateTime | Null Yes
idMenu Int | Null Yes
estado Int | Null Yes
f_registro DateTime | Null Yes
idMenuBingo Int | Null Yes
turno String | Null Yes

calendariomenuUpdateInput

Name Type Nullable
legajo String | NullableStringFieldUpdateOperationsInput | Null Yes
persona_str String | NullableStringFieldUpdateOperationsInput | Null Yes
title String | NullableStringFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
start DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
color String | NullableStringFieldUpdateOperationsInput | Null Yes
textColor String | NullableStringFieldUpdateOperationsInput | Null Yes
end DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
idMenu Int | NullableIntFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
f_registro DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
idMenuBingo Int | NullableIntFieldUpdateOperationsInput | Null Yes
turno String | NullableStringFieldUpdateOperationsInput | Null Yes

calendariomenuUncheckedUpdateInput

Name Type Nullable
idCalendarioMenu Int | IntFieldUpdateOperationsInput No
legajo String | NullableStringFieldUpdateOperationsInput | Null Yes
persona_str String | NullableStringFieldUpdateOperationsInput | Null Yes
title String | NullableStringFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
start DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
color String | NullableStringFieldUpdateOperationsInput | Null Yes
textColor String | NullableStringFieldUpdateOperationsInput | Null Yes
end DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
idMenu Int | NullableIntFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
f_registro DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
idMenuBingo Int | NullableIntFieldUpdateOperationsInput | Null Yes
turno String | NullableStringFieldUpdateOperationsInput | Null Yes

calendariomenuCreateManyInput

Name Type Nullable
idCalendarioMenu Int No
legajo String | Null Yes
persona_str String | Null Yes
title String | Null Yes
descripcion String | Null Yes
start DateTime | Null Yes
color String | Null Yes
textColor String | Null Yes
end DateTime | Null Yes
idMenu Int | Null Yes
estado Int | Null Yes
f_registro DateTime | Null Yes
idMenuBingo Int | Null Yes
turno String | Null Yes

calendariomenuUpdateManyMutationInput

Name Type Nullable
legajo String | NullableStringFieldUpdateOperationsInput | Null Yes
persona_str String | NullableStringFieldUpdateOperationsInput | Null Yes
title String | NullableStringFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
start DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
color String | NullableStringFieldUpdateOperationsInput | Null Yes
textColor String | NullableStringFieldUpdateOperationsInput | Null Yes
end DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
idMenu Int | NullableIntFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
f_registro DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
idMenuBingo Int | NullableIntFieldUpdateOperationsInput | Null Yes
turno String | NullableStringFieldUpdateOperationsInput | Null Yes

calendariomenuUncheckedUpdateManyInput

Name Type Nullable
idCalendarioMenu Int | IntFieldUpdateOperationsInput No
legajo String | NullableStringFieldUpdateOperationsInput | Null Yes
persona_str String | NullableStringFieldUpdateOperationsInput | Null Yes
title String | NullableStringFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
start DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
color String | NullableStringFieldUpdateOperationsInput | Null Yes
textColor String | NullableStringFieldUpdateOperationsInput | Null Yes
end DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
idMenu Int | NullableIntFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
f_registro DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
idMenuBingo Int | NullableIntFieldUpdateOperationsInput | Null Yes
turno String | NullableStringFieldUpdateOperationsInput | Null Yes

calendariomenu_oldCreateInput

Name Type Nullable
legajo String | Null Yes
title String | Null Yes
descripcion String | Null Yes
start DateTime | Null Yes
color String | Null Yes
textColor String | Null Yes
end DateTime | Null Yes
idMenu Int | Null Yes
estado Int | Null Yes
f_registro DateTime | Null Yes

calendariomenu_oldUncheckedCreateInput

Name Type Nullable
idCalendarioMenu Int No
legajo String | Null Yes
title String | Null Yes
descripcion String | Null Yes
start DateTime | Null Yes
color String | Null Yes
textColor String | Null Yes
end DateTime | Null Yes
idMenu Int | Null Yes
estado Int | Null Yes
f_registro DateTime | Null Yes

calendariomenu_oldUpdateInput

Name Type Nullable
legajo String | NullableStringFieldUpdateOperationsInput | Null Yes
title String | NullableStringFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
start DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
color String | NullableStringFieldUpdateOperationsInput | Null Yes
textColor String | NullableStringFieldUpdateOperationsInput | Null Yes
end DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
idMenu Int | NullableIntFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
f_registro DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

calendariomenu_oldUncheckedUpdateInput

Name Type Nullable
idCalendarioMenu Int | IntFieldUpdateOperationsInput No
legajo String | NullableStringFieldUpdateOperationsInput | Null Yes
title String | NullableStringFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
start DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
color String | NullableStringFieldUpdateOperationsInput | Null Yes
textColor String | NullableStringFieldUpdateOperationsInput | Null Yes
end DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
idMenu Int | NullableIntFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
f_registro DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

calendariomenu_oldCreateManyInput

Name Type Nullable
idCalendarioMenu Int No
legajo String | Null Yes
title String | Null Yes
descripcion String | Null Yes
start DateTime | Null Yes
color String | Null Yes
textColor String | Null Yes
end DateTime | Null Yes
idMenu Int | Null Yes
estado Int | Null Yes
f_registro DateTime | Null Yes

calendariomenu_oldUpdateManyMutationInput

Name Type Nullable
legajo String | NullableStringFieldUpdateOperationsInput | Null Yes
title String | NullableStringFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
start DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
color String | NullableStringFieldUpdateOperationsInput | Null Yes
textColor String | NullableStringFieldUpdateOperationsInput | Null Yes
end DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
idMenu Int | NullableIntFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
f_registro DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

calendariomenu_oldUncheckedUpdateManyInput

Name Type Nullable
idCalendarioMenu Int | IntFieldUpdateOperationsInput No
legajo String | NullableStringFieldUpdateOperationsInput | Null Yes
title String | NullableStringFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
start DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
color String | NullableStringFieldUpdateOperationsInput | Null Yes
textColor String | NullableStringFieldUpdateOperationsInput | Null Yes
end DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
idMenu Int | NullableIntFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
f_registro DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

capacitacionCreateInput

Name Type Nullable
descripcion String | Null Yes
f_inicio DateTime | Null Yes
f_fin DateTime | Null Yes
estado Int | Null Yes
tema String | Null Yes
f_registro DateTime | Null Yes
usuario Int | Null Yes
capacitador String | Null Yes
cupo Int | Null Yes
modalidad String | Null Yes
evaluacion String | Null Yes
institucion String | Null Yes
tipo String | Null Yes
obligatorio String | Null Yes
sector String | Null Yes

capacitacionUncheckedCreateInput

Name Type Nullable
idCapacitacion Int No
descripcion String | Null Yes
f_inicio DateTime | Null Yes
f_fin DateTime | Null Yes
estado Int | Null Yes
tema String | Null Yes
f_registro DateTime | Null Yes
usuario Int | Null Yes
capacitador String | Null Yes
cupo Int | Null Yes
modalidad String | Null Yes
evaluacion String | Null Yes
institucion String | Null Yes
tipo String | Null Yes
obligatorio String | Null Yes
sector String | Null Yes

capacitacionUpdateInput

Name Type Nullable
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
f_inicio DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
f_fin DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
tema String | NullableStringFieldUpdateOperationsInput | Null Yes
f_registro DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes
capacitador String | NullableStringFieldUpdateOperationsInput | Null Yes
cupo Int | NullableIntFieldUpdateOperationsInput | Null Yes
modalidad String | NullableStringFieldUpdateOperationsInput | Null Yes
evaluacion String | NullableStringFieldUpdateOperationsInput | Null Yes
institucion String | NullableStringFieldUpdateOperationsInput | Null Yes
tipo String | NullableStringFieldUpdateOperationsInput | Null Yes
obligatorio String | NullableStringFieldUpdateOperationsInput | Null Yes
sector String | NullableStringFieldUpdateOperationsInput | Null Yes

capacitacionUncheckedUpdateInput

Name Type Nullable
idCapacitacion Int | IntFieldUpdateOperationsInput No
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
f_inicio DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
f_fin DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
tema String | NullableStringFieldUpdateOperationsInput | Null Yes
f_registro DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes
capacitador String | NullableStringFieldUpdateOperationsInput | Null Yes
cupo Int | NullableIntFieldUpdateOperationsInput | Null Yes
modalidad String | NullableStringFieldUpdateOperationsInput | Null Yes
evaluacion String | NullableStringFieldUpdateOperationsInput | Null Yes
institucion String | NullableStringFieldUpdateOperationsInput | Null Yes
tipo String | NullableStringFieldUpdateOperationsInput | Null Yes
obligatorio String | NullableStringFieldUpdateOperationsInput | Null Yes
sector String | NullableStringFieldUpdateOperationsInput | Null Yes

capacitacionCreateManyInput

Name Type Nullable
idCapacitacion Int No
descripcion String | Null Yes
f_inicio DateTime | Null Yes
f_fin DateTime | Null Yes
estado Int | Null Yes
tema String | Null Yes
f_registro DateTime | Null Yes
usuario Int | Null Yes
capacitador String | Null Yes
cupo Int | Null Yes
modalidad String | Null Yes
evaluacion String | Null Yes
institucion String | Null Yes
tipo String | Null Yes
obligatorio String | Null Yes
sector String | Null Yes

capacitacionUpdateManyMutationInput

Name Type Nullable
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
f_inicio DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
f_fin DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
tema String | NullableStringFieldUpdateOperationsInput | Null Yes
f_registro DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes
capacitador String | NullableStringFieldUpdateOperationsInput | Null Yes
cupo Int | NullableIntFieldUpdateOperationsInput | Null Yes
modalidad String | NullableStringFieldUpdateOperationsInput | Null Yes
evaluacion String | NullableStringFieldUpdateOperationsInput | Null Yes
institucion String | NullableStringFieldUpdateOperationsInput | Null Yes
tipo String | NullableStringFieldUpdateOperationsInput | Null Yes
obligatorio String | NullableStringFieldUpdateOperationsInput | Null Yes
sector String | NullableStringFieldUpdateOperationsInput | Null Yes

capacitacionUncheckedUpdateManyInput

Name Type Nullable
idCapacitacion Int | IntFieldUpdateOperationsInput No
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
f_inicio DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
f_fin DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
tema String | NullableStringFieldUpdateOperationsInput | Null Yes
f_registro DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes
capacitador String | NullableStringFieldUpdateOperationsInput | Null Yes
cupo Int | NullableIntFieldUpdateOperationsInput | Null Yes
modalidad String | NullableStringFieldUpdateOperationsInput | Null Yes
evaluacion String | NullableStringFieldUpdateOperationsInput | Null Yes
institucion String | NullableStringFieldUpdateOperationsInput | Null Yes
tipo String | NullableStringFieldUpdateOperationsInput | Null Yes
obligatorio String | NullableStringFieldUpdateOperationsInput | Null Yes
sector String | NullableStringFieldUpdateOperationsInput | Null Yes

capacitacion_personaCreateInput

Name Type Nullable
idCapacitacion Int No
idPersona Int No
estado Int No
fecha_registro DateTime | Null Yes
usuario Int | Null Yes

capacitacion_personaUncheckedCreateInput

Name Type Nullable
idCapacitacionPersona Int No
idCapacitacion Int No
idPersona Int No
estado Int No
fecha_registro DateTime | Null Yes
usuario Int | Null Yes

capacitacion_personaUpdateInput

Name Type Nullable
idCapacitacion Int | IntFieldUpdateOperationsInput No
idPersona Int | IntFieldUpdateOperationsInput No
estado Int | IntFieldUpdateOperationsInput No
fecha_registro DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes

capacitacion_personaUncheckedUpdateInput

Name Type Nullable
idCapacitacionPersona Int | IntFieldUpdateOperationsInput No
idCapacitacion Int | IntFieldUpdateOperationsInput No
idPersona Int | IntFieldUpdateOperationsInput No
estado Int | IntFieldUpdateOperationsInput No
fecha_registro DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes

capacitacion_personaCreateManyInput

Name Type Nullable
idCapacitacionPersona Int No
idCapacitacion Int No
idPersona Int No
estado Int No
fecha_registro DateTime | Null Yes
usuario Int | Null Yes

capacitacion_personaUpdateManyMutationInput

Name Type Nullable
idCapacitacion Int | IntFieldUpdateOperationsInput No
idPersona Int | IntFieldUpdateOperationsInput No
estado Int | IntFieldUpdateOperationsInput No
fecha_registro DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes

capacitacion_personaUncheckedUpdateManyInput

Name Type Nullable
idCapacitacionPersona Int | IntFieldUpdateOperationsInput No
idCapacitacion Int | IntFieldUpdateOperationsInput No
idPersona Int | IntFieldUpdateOperationsInput No
estado Int | IntFieldUpdateOperationsInput No
fecha_registro DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes

codificadosCreateInput

Name Type Nullable
gen1 String No
atr1 String No
atr2 String No
atr3 String No
gen1desc String | Null Yes
atr1desc String | Null Yes
atr2desc String | Null Yes
atr3desc String | Null Yes

codificadosUncheckedCreateInput

Name Type Nullable
gen1 String No
atr1 String No
atr2 String No
atr3 String No
gen1desc String | Null Yes
atr1desc String | Null Yes
atr2desc String | Null Yes
atr3desc String | Null Yes

codificadosUpdateInput

Name Type Nullable
gen1 String | StringFieldUpdateOperationsInput No
atr1 String | StringFieldUpdateOperationsInput No
atr2 String | StringFieldUpdateOperationsInput No
atr3 String | StringFieldUpdateOperationsInput No
gen1desc String | NullableStringFieldUpdateOperationsInput | Null Yes
atr1desc String | NullableStringFieldUpdateOperationsInput | Null Yes
atr2desc String | NullableStringFieldUpdateOperationsInput | Null Yes
atr3desc String | NullableStringFieldUpdateOperationsInput | Null Yes

codificadosUncheckedUpdateInput

Name Type Nullable
gen1 String | StringFieldUpdateOperationsInput No
atr1 String | StringFieldUpdateOperationsInput No
atr2 String | StringFieldUpdateOperationsInput No
atr3 String | StringFieldUpdateOperationsInput No
gen1desc String | NullableStringFieldUpdateOperationsInput | Null Yes
atr1desc String | NullableStringFieldUpdateOperationsInput | Null Yes
atr2desc String | NullableStringFieldUpdateOperationsInput | Null Yes
atr3desc String | NullableStringFieldUpdateOperationsInput | Null Yes

codificadosCreateManyInput

Name Type Nullable
gen1 String No
atr1 String No
atr2 String No
atr3 String No
gen1desc String | Null Yes
atr1desc String | Null Yes
atr2desc String | Null Yes
atr3desc String | Null Yes

codificadosUpdateManyMutationInput

Name Type Nullable
gen1 String | StringFieldUpdateOperationsInput No
atr1 String | StringFieldUpdateOperationsInput No
atr2 String | StringFieldUpdateOperationsInput No
atr3 String | StringFieldUpdateOperationsInput No
gen1desc String | NullableStringFieldUpdateOperationsInput | Null Yes
atr1desc String | NullableStringFieldUpdateOperationsInput | Null Yes
atr2desc String | NullableStringFieldUpdateOperationsInput | Null Yes
atr3desc String | NullableStringFieldUpdateOperationsInput | Null Yes

codificadosUncheckedUpdateManyInput

Name Type Nullable
gen1 String | StringFieldUpdateOperationsInput No
atr1 String | StringFieldUpdateOperationsInput No
atr2 String | StringFieldUpdateOperationsInput No
atr3 String | StringFieldUpdateOperationsInput No
gen1desc String | NullableStringFieldUpdateOperationsInput | Null Yes
atr1desc String | NullableStringFieldUpdateOperationsInput | Null Yes
atr2desc String | NullableStringFieldUpdateOperationsInput | Null Yes
atr3desc String | NullableStringFieldUpdateOperationsInput | Null Yes

conexion_bejermanCreateInput

Name Type Nullable
username String | Null Yes
pass String | Null Yes
estado Int | Null Yes
usuario Int | Null Yes

conexion_bejermanUncheckedCreateInput

Name Type Nullable
idConexionBejerman Int No
username String | Null Yes
pass String | Null Yes
estado Int | Null Yes
usuario Int | Null Yes

conexion_bejermanUpdateInput

Name Type Nullable
username String | NullableStringFieldUpdateOperationsInput | Null Yes
pass String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes

conexion_bejermanUncheckedUpdateInput

Name Type Nullable
idConexionBejerman Int | IntFieldUpdateOperationsInput No
username String | NullableStringFieldUpdateOperationsInput | Null Yes
pass String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes

conexion_bejermanCreateManyInput

Name Type Nullable
idConexionBejerman Int No
username String | Null Yes
pass String | Null Yes
estado Int | Null Yes
usuario Int | Null Yes

conexion_bejermanUpdateManyMutationInput

Name Type Nullable
username String | NullableStringFieldUpdateOperationsInput | Null Yes
pass String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes

conexion_bejermanUncheckedUpdateManyInput

Name Type Nullable
idConexionBejerman Int | IntFieldUpdateOperationsInput No
username String | NullableStringFieldUpdateOperationsInput | Null Yes
pass String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes

consolaCreateInput

Name Type Nullable
usuario Int No
accion_id Int No
accion String No
fecha_registro DateTime No
modulo Int No

consolaUncheckedCreateInput

Name Type Nullable
idConsola Int No
usuario Int No
accion_id Int No
accion String No
fecha_registro DateTime No
modulo Int No

consolaUpdateInput

Name Type Nullable
usuario Int | IntFieldUpdateOperationsInput No
accion_id Int | IntFieldUpdateOperationsInput No
accion String | StringFieldUpdateOperationsInput No
fecha_registro DateTime | DateTimeFieldUpdateOperationsInput No
modulo Int | IntFieldUpdateOperationsInput No

consolaUncheckedUpdateInput

Name Type Nullable
idConsola Int | IntFieldUpdateOperationsInput No
usuario Int | IntFieldUpdateOperationsInput No
accion_id Int | IntFieldUpdateOperationsInput No
accion String | StringFieldUpdateOperationsInput No
fecha_registro DateTime | DateTimeFieldUpdateOperationsInput No
modulo Int | IntFieldUpdateOperationsInput No

consolaCreateManyInput

Name Type Nullable
idConsola Int No
usuario Int No
accion_id Int No
accion String No
fecha_registro DateTime No
modulo Int No

consolaUpdateManyMutationInput

Name Type Nullable
usuario Int | IntFieldUpdateOperationsInput No
accion_id Int | IntFieldUpdateOperationsInput No
accion String | StringFieldUpdateOperationsInput No
fecha_registro DateTime | DateTimeFieldUpdateOperationsInput No
modulo Int | IntFieldUpdateOperationsInput No

consolaUncheckedUpdateManyInput

Name Type Nullable
idConsola Int | IntFieldUpdateOperationsInput No
usuario Int | IntFieldUpdateOperationsInput No
accion_id Int | IntFieldUpdateOperationsInput No
accion String | StringFieldUpdateOperationsInput No
fecha_registro DateTime | DateTimeFieldUpdateOperationsInput No
modulo Int | IntFieldUpdateOperationsInput No

desempenoCreateInput

Name Type Nullable
idPersona Int No
usuario Int No
f_registro DateTime No
estado Int | Null Yes
con_tecnico String | Null Yes
con_operativo String | Null Yes
precencia_prolijidad String | Null Yes
puntualidad String | Null Yes
cumplimiento_modalidad_trabajo String | Null Yes
vocabulario String | Null Yes
trabajo_equipo String | Null Yes
capacidad_organizacion String | Null Yes
vocacion_servicio String | Null Yes
capacidad_analisis String | Null Yes
obs String | Null Yes
cumplimiento_normas String | Null Yes

desempenoUncheckedCreateInput

Name Type Nullable
idDesempeno Int No
idPersona Int No
usuario Int No
f_registro DateTime No
estado Int | Null Yes
con_tecnico String | Null Yes
con_operativo String | Null Yes
precencia_prolijidad String | Null Yes
puntualidad String | Null Yes
cumplimiento_modalidad_trabajo String | Null Yes
vocabulario String | Null Yes
trabajo_equipo String | Null Yes
capacidad_organizacion String | Null Yes
vocacion_servicio String | Null Yes
capacidad_analisis String | Null Yes
obs String | Null Yes
cumplimiento_normas String | Null Yes

desempenoUpdateInput

Name Type Nullable
idPersona Int | IntFieldUpdateOperationsInput No
usuario Int | IntFieldUpdateOperationsInput No
f_registro DateTime | DateTimeFieldUpdateOperationsInput No
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
con_tecnico String | NullableStringFieldUpdateOperationsInput | Null Yes
con_operativo String | NullableStringFieldUpdateOperationsInput | Null Yes
precencia_prolijidad String | NullableStringFieldUpdateOperationsInput | Null Yes
puntualidad String | NullableStringFieldUpdateOperationsInput | Null Yes
cumplimiento_modalidad_trabajo String | NullableStringFieldUpdateOperationsInput | Null Yes
vocabulario String | NullableStringFieldUpdateOperationsInput | Null Yes
trabajo_equipo String | NullableStringFieldUpdateOperationsInput | Null Yes
capacidad_organizacion String | NullableStringFieldUpdateOperationsInput | Null Yes
vocacion_servicio String | NullableStringFieldUpdateOperationsInput | Null Yes
capacidad_analisis String | NullableStringFieldUpdateOperationsInput | Null Yes
obs String | NullableStringFieldUpdateOperationsInput | Null Yes
cumplimiento_normas String | NullableStringFieldUpdateOperationsInput | Null Yes

desempenoUncheckedUpdateInput

Name Type Nullable
idDesempeno Int | IntFieldUpdateOperationsInput No
idPersona Int | IntFieldUpdateOperationsInput No
usuario Int | IntFieldUpdateOperationsInput No
f_registro DateTime | DateTimeFieldUpdateOperationsInput No
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
con_tecnico String | NullableStringFieldUpdateOperationsInput | Null Yes
con_operativo String | NullableStringFieldUpdateOperationsInput | Null Yes
precencia_prolijidad String | NullableStringFieldUpdateOperationsInput | Null Yes
puntualidad String | NullableStringFieldUpdateOperationsInput | Null Yes
cumplimiento_modalidad_trabajo String | NullableStringFieldUpdateOperationsInput | Null Yes
vocabulario String | NullableStringFieldUpdateOperationsInput | Null Yes
trabajo_equipo String | NullableStringFieldUpdateOperationsInput | Null Yes
capacidad_organizacion String | NullableStringFieldUpdateOperationsInput | Null Yes
vocacion_servicio String | NullableStringFieldUpdateOperationsInput | Null Yes
capacidad_analisis String | NullableStringFieldUpdateOperationsInput | Null Yes
obs String | NullableStringFieldUpdateOperationsInput | Null Yes
cumplimiento_normas String | NullableStringFieldUpdateOperationsInput | Null Yes

desempenoCreateManyInput

Name Type Nullable
idDesempeno Int No
idPersona Int No
usuario Int No
f_registro DateTime No
estado Int | Null Yes
con_tecnico String | Null Yes
con_operativo String | Null Yes
precencia_prolijidad String | Null Yes
puntualidad String | Null Yes
cumplimiento_modalidad_trabajo String | Null Yes
vocabulario String | Null Yes
trabajo_equipo String | Null Yes
capacidad_organizacion String | Null Yes
vocacion_servicio String | Null Yes
capacidad_analisis String | Null Yes
obs String | Null Yes
cumplimiento_normas String | Null Yes

desempenoUpdateManyMutationInput

Name Type Nullable
idPersona Int | IntFieldUpdateOperationsInput No
usuario Int | IntFieldUpdateOperationsInput No
f_registro DateTime | DateTimeFieldUpdateOperationsInput No
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
con_tecnico String | NullableStringFieldUpdateOperationsInput | Null Yes
con_operativo String | NullableStringFieldUpdateOperationsInput | Null Yes
precencia_prolijidad String | NullableStringFieldUpdateOperationsInput | Null Yes
puntualidad String | NullableStringFieldUpdateOperationsInput | Null Yes
cumplimiento_modalidad_trabajo String | NullableStringFieldUpdateOperationsInput | Null Yes
vocabulario String | NullableStringFieldUpdateOperationsInput | Null Yes
trabajo_equipo String | NullableStringFieldUpdateOperationsInput | Null Yes
capacidad_organizacion String | NullableStringFieldUpdateOperationsInput | Null Yes
vocacion_servicio String | NullableStringFieldUpdateOperationsInput | Null Yes
capacidad_analisis String | NullableStringFieldUpdateOperationsInput | Null Yes
obs String | NullableStringFieldUpdateOperationsInput | Null Yes
cumplimiento_normas String | NullableStringFieldUpdateOperationsInput | Null Yes

desempenoUncheckedUpdateManyInput

Name Type Nullable
idDesempeno Int | IntFieldUpdateOperationsInput No
idPersona Int | IntFieldUpdateOperationsInput No
usuario Int | IntFieldUpdateOperationsInput No
f_registro DateTime | DateTimeFieldUpdateOperationsInput No
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
con_tecnico String | NullableStringFieldUpdateOperationsInput | Null Yes
con_operativo String | NullableStringFieldUpdateOperationsInput | Null Yes
precencia_prolijidad String | NullableStringFieldUpdateOperationsInput | Null Yes
puntualidad String | NullableStringFieldUpdateOperationsInput | Null Yes
cumplimiento_modalidad_trabajo String | NullableStringFieldUpdateOperationsInput | Null Yes
vocabulario String | NullableStringFieldUpdateOperationsInput | Null Yes
trabajo_equipo String | NullableStringFieldUpdateOperationsInput | Null Yes
capacidad_organizacion String | NullableStringFieldUpdateOperationsInput | Null Yes
vocacion_servicio String | NullableStringFieldUpdateOperationsInput | Null Yes
capacidad_analisis String | NullableStringFieldUpdateOperationsInput | Null Yes
obs String | NullableStringFieldUpdateOperationsInput | Null Yes
cumplimiento_normas String | NullableStringFieldUpdateOperationsInput | Null Yes

desempeno_evolCreateInput

Name Type Nullable
idEvaluador Int | Null Yes
usuario Int | Null Yes
idPersona Int | Null Yes
f_desempeno DateTime | Null Yes
escucha Int | Null Yes
ayuda_cliente Int | Null Yes
empatia Int | Null Yes
comparte_informacion Int | Null Yes
colabora_pares Int | Null Yes
trabajo_positivo Int | Null Yes
cumple_objetivos Int | Null Yes
acepta_sugerencias Int | Null Yes
situacion_adversas Int | Null Yes
asistencia_puntualidad Int | Null Yes
imagen Int | Null Yes
limpieza_instalaciones Int | Null Yes
limpieza_vestuarios Int | Null Yes
minimiza_perdidas_roturas Int | Null Yes
objetivos Int | Null Yes
cumplimientos_sector Int | Null Yes
estado Int | Null Yes
conocimientos_sector Int | Null Yes
obs String | Null Yes

desempeno_evolUncheckedCreateInput

Name Type Nullable
idDesempenoEvol Int No
idEvaluador Int | Null Yes
usuario Int | Null Yes
idPersona Int | Null Yes
f_desempeno DateTime | Null Yes
escucha Int | Null Yes
ayuda_cliente Int | Null Yes
empatia Int | Null Yes
comparte_informacion Int | Null Yes
colabora_pares Int | Null Yes
trabajo_positivo Int | Null Yes
cumple_objetivos Int | Null Yes
acepta_sugerencias Int | Null Yes
situacion_adversas Int | Null Yes
asistencia_puntualidad Int | Null Yes
imagen Int | Null Yes
limpieza_instalaciones Int | Null Yes
limpieza_vestuarios Int | Null Yes
minimiza_perdidas_roturas Int | Null Yes
objetivos Int | Null Yes
cumplimientos_sector Int | Null Yes
estado Int | Null Yes
conocimientos_sector Int | Null Yes
obs String | Null Yes

desempeno_evolUpdateInput

Name Type Nullable
idEvaluador Int | NullableIntFieldUpdateOperationsInput | Null Yes
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes
idPersona Int | NullableIntFieldUpdateOperationsInput | Null Yes
f_desempeno DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
escucha Int | NullableIntFieldUpdateOperationsInput | Null Yes
ayuda_cliente Int | NullableIntFieldUpdateOperationsInput | Null Yes
empatia Int | NullableIntFieldUpdateOperationsInput | Null Yes
comparte_informacion Int | NullableIntFieldUpdateOperationsInput | Null Yes
colabora_pares Int | NullableIntFieldUpdateOperationsInput | Null Yes
trabajo_positivo Int | NullableIntFieldUpdateOperationsInput | Null Yes
cumple_objetivos Int | NullableIntFieldUpdateOperationsInput | Null Yes
acepta_sugerencias Int | NullableIntFieldUpdateOperationsInput | Null Yes
situacion_adversas Int | NullableIntFieldUpdateOperationsInput | Null Yes
asistencia_puntualidad Int | NullableIntFieldUpdateOperationsInput | Null Yes
imagen Int | NullableIntFieldUpdateOperationsInput | Null Yes
limpieza_instalaciones Int | NullableIntFieldUpdateOperationsInput | Null Yes
limpieza_vestuarios Int | NullableIntFieldUpdateOperationsInput | Null Yes
minimiza_perdidas_roturas Int | NullableIntFieldUpdateOperationsInput | Null Yes
objetivos Int | NullableIntFieldUpdateOperationsInput | Null Yes
cumplimientos_sector Int | NullableIntFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
conocimientos_sector Int | NullableIntFieldUpdateOperationsInput | Null Yes
obs String | NullableStringFieldUpdateOperationsInput | Null Yes

desempeno_evolUncheckedUpdateInput

Name Type Nullable
idDesempenoEvol Int | IntFieldUpdateOperationsInput No
idEvaluador Int | NullableIntFieldUpdateOperationsInput | Null Yes
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes
idPersona Int | NullableIntFieldUpdateOperationsInput | Null Yes
f_desempeno DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
escucha Int | NullableIntFieldUpdateOperationsInput | Null Yes
ayuda_cliente Int | NullableIntFieldUpdateOperationsInput | Null Yes
empatia Int | NullableIntFieldUpdateOperationsInput | Null Yes
comparte_informacion Int | NullableIntFieldUpdateOperationsInput | Null Yes
colabora_pares Int | NullableIntFieldUpdateOperationsInput | Null Yes
trabajo_positivo Int | NullableIntFieldUpdateOperationsInput | Null Yes
cumple_objetivos Int | NullableIntFieldUpdateOperationsInput | Null Yes
acepta_sugerencias Int | NullableIntFieldUpdateOperationsInput | Null Yes
situacion_adversas Int | NullableIntFieldUpdateOperationsInput | Null Yes
asistencia_puntualidad Int | NullableIntFieldUpdateOperationsInput | Null Yes
imagen Int | NullableIntFieldUpdateOperationsInput | Null Yes
limpieza_instalaciones Int | NullableIntFieldUpdateOperationsInput | Null Yes
limpieza_vestuarios Int | NullableIntFieldUpdateOperationsInput | Null Yes
minimiza_perdidas_roturas Int | NullableIntFieldUpdateOperationsInput | Null Yes
objetivos Int | NullableIntFieldUpdateOperationsInput | Null Yes
cumplimientos_sector Int | NullableIntFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
conocimientos_sector Int | NullableIntFieldUpdateOperationsInput | Null Yes
obs String | NullableStringFieldUpdateOperationsInput | Null Yes

desempeno_evolCreateManyInput

Name Type Nullable
idDesempenoEvol Int No
idEvaluador Int | Null Yes
usuario Int | Null Yes
idPersona Int | Null Yes
f_desempeno DateTime | Null Yes
escucha Int | Null Yes
ayuda_cliente Int | Null Yes
empatia Int | Null Yes
comparte_informacion Int | Null Yes
colabora_pares Int | Null Yes
trabajo_positivo Int | Null Yes
cumple_objetivos Int | Null Yes
acepta_sugerencias Int | Null Yes
situacion_adversas Int | Null Yes
asistencia_puntualidad Int | Null Yes
imagen Int | Null Yes
limpieza_instalaciones Int | Null Yes
limpieza_vestuarios Int | Null Yes
minimiza_perdidas_roturas Int | Null Yes
objetivos Int | Null Yes
cumplimientos_sector Int | Null Yes
estado Int | Null Yes
conocimientos_sector Int | Null Yes
obs String | Null Yes

desempeno_evolUpdateManyMutationInput

Name Type Nullable
idEvaluador Int | NullableIntFieldUpdateOperationsInput | Null Yes
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes
idPersona Int | NullableIntFieldUpdateOperationsInput | Null Yes
f_desempeno DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
escucha Int | NullableIntFieldUpdateOperationsInput | Null Yes
ayuda_cliente Int | NullableIntFieldUpdateOperationsInput | Null Yes
empatia Int | NullableIntFieldUpdateOperationsInput | Null Yes
comparte_informacion Int | NullableIntFieldUpdateOperationsInput | Null Yes
colabora_pares Int | NullableIntFieldUpdateOperationsInput | Null Yes
trabajo_positivo Int | NullableIntFieldUpdateOperationsInput | Null Yes
cumple_objetivos Int | NullableIntFieldUpdateOperationsInput | Null Yes
acepta_sugerencias Int | NullableIntFieldUpdateOperationsInput | Null Yes
situacion_adversas Int | NullableIntFieldUpdateOperationsInput | Null Yes
asistencia_puntualidad Int | NullableIntFieldUpdateOperationsInput | Null Yes
imagen Int | NullableIntFieldUpdateOperationsInput | Null Yes
limpieza_instalaciones Int | NullableIntFieldUpdateOperationsInput | Null Yes
limpieza_vestuarios Int | NullableIntFieldUpdateOperationsInput | Null Yes
minimiza_perdidas_roturas Int | NullableIntFieldUpdateOperationsInput | Null Yes
objetivos Int | NullableIntFieldUpdateOperationsInput | Null Yes
cumplimientos_sector Int | NullableIntFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
conocimientos_sector Int | NullableIntFieldUpdateOperationsInput | Null Yes
obs String | NullableStringFieldUpdateOperationsInput | Null Yes

desempeno_evolUncheckedUpdateManyInput

Name Type Nullable
idDesempenoEvol Int | IntFieldUpdateOperationsInput No
idEvaluador Int | NullableIntFieldUpdateOperationsInput | Null Yes
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes
idPersona Int | NullableIntFieldUpdateOperationsInput | Null Yes
f_desempeno DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
escucha Int | NullableIntFieldUpdateOperationsInput | Null Yes
ayuda_cliente Int | NullableIntFieldUpdateOperationsInput | Null Yes
empatia Int | NullableIntFieldUpdateOperationsInput | Null Yes
comparte_informacion Int | NullableIntFieldUpdateOperationsInput | Null Yes
colabora_pares Int | NullableIntFieldUpdateOperationsInput | Null Yes
trabajo_positivo Int | NullableIntFieldUpdateOperationsInput | Null Yes
cumple_objetivos Int | NullableIntFieldUpdateOperationsInput | Null Yes
acepta_sugerencias Int | NullableIntFieldUpdateOperationsInput | Null Yes
situacion_adversas Int | NullableIntFieldUpdateOperationsInput | Null Yes
asistencia_puntualidad Int | NullableIntFieldUpdateOperationsInput | Null Yes
imagen Int | NullableIntFieldUpdateOperationsInput | Null Yes
limpieza_instalaciones Int | NullableIntFieldUpdateOperationsInput | Null Yes
limpieza_vestuarios Int | NullableIntFieldUpdateOperationsInput | Null Yes
minimiza_perdidas_roturas Int | NullableIntFieldUpdateOperationsInput | Null Yes
objetivos Int | NullableIntFieldUpdateOperationsInput | Null Yes
cumplimientos_sector Int | NullableIntFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
conocimientos_sector Int | NullableIntFieldUpdateOperationsInput | Null Yes
obs String | NullableStringFieldUpdateOperationsInput | Null Yes

documentosCreateInput

Name Type Nullable
documento String | Null Yes
descripcion String | Null Yes
file String | Null Yes
path String | Null Yes
url String | Null Yes
fecha DateTime | Null Yes
categoria String | Null Yes
tipo String | Null Yes
size String | Null Yes
sector Int | Null Yes
referencia Int | Null Yes
funcionalidad String | Null Yes
estado String | Null Yes

documentosUncheckedCreateInput

Name Type Nullable
idDocumentos Int No
documento String | Null Yes
descripcion String | Null Yes
file String | Null Yes
path String | Null Yes
url String | Null Yes
fecha DateTime | Null Yes
categoria String | Null Yes
tipo String | Null Yes
size String | Null Yes
sector Int | Null Yes
referencia Int | Null Yes
funcionalidad String | Null Yes
estado String | Null Yes

documentosUpdateInput

Name Type Nullable
documento String | NullableStringFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
file String | NullableStringFieldUpdateOperationsInput | Null Yes
path String | NullableStringFieldUpdateOperationsInput | Null Yes
url String | NullableStringFieldUpdateOperationsInput | Null Yes
fecha DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
categoria String | NullableStringFieldUpdateOperationsInput | Null Yes
tipo String | NullableStringFieldUpdateOperationsInput | Null Yes
size String | NullableStringFieldUpdateOperationsInput | Null Yes
sector Int | NullableIntFieldUpdateOperationsInput | Null Yes
referencia Int | NullableIntFieldUpdateOperationsInput | Null Yes
funcionalidad String | NullableStringFieldUpdateOperationsInput | Null Yes
estado String | NullableStringFieldUpdateOperationsInput | Null Yes

documentosUncheckedUpdateInput

Name Type Nullable
idDocumentos Int | IntFieldUpdateOperationsInput No
documento String | NullableStringFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
file String | NullableStringFieldUpdateOperationsInput | Null Yes
path String | NullableStringFieldUpdateOperationsInput | Null Yes
url String | NullableStringFieldUpdateOperationsInput | Null Yes
fecha DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
categoria String | NullableStringFieldUpdateOperationsInput | Null Yes
tipo String | NullableStringFieldUpdateOperationsInput | Null Yes
size String | NullableStringFieldUpdateOperationsInput | Null Yes
sector Int | NullableIntFieldUpdateOperationsInput | Null Yes
referencia Int | NullableIntFieldUpdateOperationsInput | Null Yes
funcionalidad String | NullableStringFieldUpdateOperationsInput | Null Yes
estado String | NullableStringFieldUpdateOperationsInput | Null Yes

documentosCreateManyInput

Name Type Nullable
idDocumentos Int No
documento String | Null Yes
descripcion String | Null Yes
file String | Null Yes
path String | Null Yes
url String | Null Yes
fecha DateTime | Null Yes
categoria String | Null Yes
tipo String | Null Yes
size String | Null Yes
sector Int | Null Yes
referencia Int | Null Yes
funcionalidad String | Null Yes
estado String | Null Yes

documentosUpdateManyMutationInput

Name Type Nullable
documento String | NullableStringFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
file String | NullableStringFieldUpdateOperationsInput | Null Yes
path String | NullableStringFieldUpdateOperationsInput | Null Yes
url String | NullableStringFieldUpdateOperationsInput | Null Yes
fecha DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
categoria String | NullableStringFieldUpdateOperationsInput | Null Yes
tipo String | NullableStringFieldUpdateOperationsInput | Null Yes
size String | NullableStringFieldUpdateOperationsInput | Null Yes
sector Int | NullableIntFieldUpdateOperationsInput | Null Yes
referencia Int | NullableIntFieldUpdateOperationsInput | Null Yes
funcionalidad String | NullableStringFieldUpdateOperationsInput | Null Yes
estado String | NullableStringFieldUpdateOperationsInput | Null Yes

documentosUncheckedUpdateManyInput

Name Type Nullable
idDocumentos Int | IntFieldUpdateOperationsInput No
documento String | NullableStringFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
file String | NullableStringFieldUpdateOperationsInput | Null Yes
path String | NullableStringFieldUpdateOperationsInput | Null Yes
url String | NullableStringFieldUpdateOperationsInput | Null Yes
fecha DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
categoria String | NullableStringFieldUpdateOperationsInput | Null Yes
tipo String | NullableStringFieldUpdateOperationsInput | Null Yes
size String | NullableStringFieldUpdateOperationsInput | Null Yes
sector Int | NullableIntFieldUpdateOperationsInput | Null Yes
referencia Int | NullableIntFieldUpdateOperationsInput | Null Yes
funcionalidad String | NullableStringFieldUpdateOperationsInput | Null Yes
estado String | NullableStringFieldUpdateOperationsInput | Null Yes

estudioCreateInput

Name Type Nullable
institucion Int | Null Yes
titulo String | Null Yes
fecha DateTime | Null Yes
estado Int | Null Yes
tipo String | Null Yes

estudioUncheckedCreateInput

Name Type Nullable
idEstudio Int No
institucion Int | Null Yes
titulo String | Null Yes
fecha DateTime | Null Yes
estado Int | Null Yes
tipo String | Null Yes

estudioUpdateInput

Name Type Nullable
institucion Int | NullableIntFieldUpdateOperationsInput | Null Yes
titulo String | NullableStringFieldUpdateOperationsInput | Null Yes
fecha DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
tipo String | NullableStringFieldUpdateOperationsInput | Null Yes

estudioUncheckedUpdateInput

Name Type Nullable
idEstudio Int | IntFieldUpdateOperationsInput No
institucion Int | NullableIntFieldUpdateOperationsInput | Null Yes
titulo String | NullableStringFieldUpdateOperationsInput | Null Yes
fecha DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
tipo String | NullableStringFieldUpdateOperationsInput | Null Yes

estudioCreateManyInput

Name Type Nullable
idEstudio Int No
institucion Int | Null Yes
titulo String | Null Yes
fecha DateTime | Null Yes
estado Int | Null Yes
tipo String | Null Yes

estudioUpdateManyMutationInput

Name Type Nullable
institucion Int | NullableIntFieldUpdateOperationsInput | Null Yes
titulo String | NullableStringFieldUpdateOperationsInput | Null Yes
fecha DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
tipo String | NullableStringFieldUpdateOperationsInput | Null Yes

estudioUncheckedUpdateManyInput

Name Type Nullable
idEstudio Int | IntFieldUpdateOperationsInput No
institucion Int | NullableIntFieldUpdateOperationsInput | Null Yes
titulo String | NullableStringFieldUpdateOperationsInput | Null Yes
fecha DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
tipo String | NullableStringFieldUpdateOperationsInput | Null Yes

estudio_personaCreateInput

Name Type Nullable
idEstudio Int | Null Yes
idPersona Int | Null Yes
descripcion String | Null Yes
fecha_registro DateTime | Null Yes
usuario Int | Null Yes
estado Int | Null Yes
estado_str String | Null Yes
fecha_inicio DateTime | Null Yes
fecha_finalizacion DateTime | Null Yes

estudio_personaUncheckedCreateInput

Name Type Nullable
idEstudio_persona Int No
idEstudio Int | Null Yes
idPersona Int | Null Yes
descripcion String | Null Yes
fecha_registro DateTime | Null Yes
usuario Int | Null Yes
estado Int | Null Yes
estado_str String | Null Yes
fecha_inicio DateTime | Null Yes
fecha_finalizacion DateTime | Null Yes

estudio_personaUpdateInput

Name Type Nullable
idEstudio Int | NullableIntFieldUpdateOperationsInput | Null Yes
idPersona Int | NullableIntFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
fecha_registro DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
estado_str String | NullableStringFieldUpdateOperationsInput | Null Yes
fecha_inicio DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
fecha_finalizacion DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

estudio_personaUncheckedUpdateInput

Name Type Nullable
idEstudio_persona Int | IntFieldUpdateOperationsInput No
idEstudio Int | NullableIntFieldUpdateOperationsInput | Null Yes
idPersona Int | NullableIntFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
fecha_registro DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
estado_str String | NullableStringFieldUpdateOperationsInput | Null Yes
fecha_inicio DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
fecha_finalizacion DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

estudio_personaCreateManyInput

Name Type Nullable
idEstudio_persona Int No
idEstudio Int | Null Yes
idPersona Int | Null Yes
descripcion String | Null Yes
fecha_registro DateTime | Null Yes
usuario Int | Null Yes
estado Int | Null Yes
estado_str String | Null Yes
fecha_inicio DateTime | Null Yes
fecha_finalizacion DateTime | Null Yes

estudio_personaUpdateManyMutationInput

Name Type Nullable
idEstudio Int | NullableIntFieldUpdateOperationsInput | Null Yes
idPersona Int | NullableIntFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
fecha_registro DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
estado_str String | NullableStringFieldUpdateOperationsInput | Null Yes
fecha_inicio DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
fecha_finalizacion DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

estudio_personaUncheckedUpdateManyInput

Name Type Nullable
idEstudio_persona Int | IntFieldUpdateOperationsInput No
idEstudio Int | NullableIntFieldUpdateOperationsInput | Null Yes
idPersona Int | NullableIntFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
fecha_registro DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
estado_str String | NullableStringFieldUpdateOperationsInput | Null Yes
fecha_inicio DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
fecha_finalizacion DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

falla_articuloCreateInput

Name Type Nullable
falla Int No
articulo Int No

falla_articuloUncheckedCreateInput

Name Type Nullable
idFallasArticulos Int No
falla Int No
articulo Int No

falla_articuloUpdateInput

Name Type Nullable
falla Int | IntFieldUpdateOperationsInput No
articulo Int | IntFieldUpdateOperationsInput No

falla_articuloUncheckedUpdateInput

Name Type Nullable
idFallasArticulos Int | IntFieldUpdateOperationsInput No
falla Int | IntFieldUpdateOperationsInput No
articulo Int | IntFieldUpdateOperationsInput No

falla_articuloCreateManyInput

Name Type Nullable
idFallasArticulos Int No
falla Int No
articulo Int No

falla_articuloUpdateManyMutationInput

Name Type Nullable
falla Int | IntFieldUpdateOperationsInput No
articulo Int | IntFieldUpdateOperationsInput No

falla_articuloUncheckedUpdateManyInput

Name Type Nullable
idFallasArticulos Int | IntFieldUpdateOperationsInput No
falla Int | IntFieldUpdateOperationsInput No
articulo Int | IntFieldUpdateOperationsInput No

fallasCreateInput

Name Type Nullable
descripcion String | Null Yes
tipo String | Null Yes
estado Int | Null Yes
gravedad String | Null Yes
articulo String | Null Yes

fallasUncheckedCreateInput

Name Type Nullable
idFallas Int No
descripcion String | Null Yes
tipo String | Null Yes
estado Int | Null Yes
gravedad String | Null Yes
articulo String | Null Yes

fallasUpdateInput

Name Type Nullable
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
tipo String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
gravedad String | NullableStringFieldUpdateOperationsInput | Null Yes
articulo String | NullableStringFieldUpdateOperationsInput | Null Yes

fallasUncheckedUpdateInput

Name Type Nullable
idFallas Int | IntFieldUpdateOperationsInput No
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
tipo String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
gravedad String | NullableStringFieldUpdateOperationsInput | Null Yes
articulo String | NullableStringFieldUpdateOperationsInput | Null Yes

fallasCreateManyInput

Name Type Nullable
idFallas Int No
descripcion String | Null Yes
tipo String | Null Yes
estado Int | Null Yes
gravedad String | Null Yes
articulo String | Null Yes

fallasUpdateManyMutationInput

Name Type Nullable
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
tipo String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
gravedad String | NullableStringFieldUpdateOperationsInput | Null Yes
articulo String | NullableStringFieldUpdateOperationsInput | Null Yes

fallasUncheckedUpdateManyInput

Name Type Nullable
idFallas Int | IntFieldUpdateOperationsInput No
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
tipo String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
gravedad String | NullableStringFieldUpdateOperationsInput | Null Yes
articulo String | NullableStringFieldUpdateOperationsInput | Null Yes

fallas_maquinasCreateInput

Name Type Nullable
maquina Int No
falla Int No
fecha_registro DateTime No
estado Int No
usuario Int No
ticket Int | Null Yes

fallas_maquinasUncheckedCreateInput

Name Type Nullable
idFallas_maquinas Int No
maquina Int No
falla Int No
fecha_registro DateTime No
estado Int No
usuario Int No
ticket Int | Null Yes

fallas_maquinasUpdateInput

Name Type Nullable
maquina Int | IntFieldUpdateOperationsInput No
falla Int | IntFieldUpdateOperationsInput No
fecha_registro DateTime | DateTimeFieldUpdateOperationsInput No
estado Int | IntFieldUpdateOperationsInput No
usuario Int | IntFieldUpdateOperationsInput No
ticket Int | NullableIntFieldUpdateOperationsInput | Null Yes

fallas_maquinasUncheckedUpdateInput

Name Type Nullable
idFallas_maquinas Int | IntFieldUpdateOperationsInput No
maquina Int | IntFieldUpdateOperationsInput No
falla Int | IntFieldUpdateOperationsInput No
fecha_registro DateTime | DateTimeFieldUpdateOperationsInput No
estado Int | IntFieldUpdateOperationsInput No
usuario Int | IntFieldUpdateOperationsInput No
ticket Int | NullableIntFieldUpdateOperationsInput | Null Yes

fallas_maquinasCreateManyInput

Name Type Nullable
idFallas_maquinas Int No
maquina Int No
falla Int No
fecha_registro DateTime No
estado Int No
usuario Int No
ticket Int | Null Yes

fallas_maquinasUpdateManyMutationInput

Name Type Nullable
maquina Int | IntFieldUpdateOperationsInput No
falla Int | IntFieldUpdateOperationsInput No
fecha_registro DateTime | DateTimeFieldUpdateOperationsInput No
estado Int | IntFieldUpdateOperationsInput No
usuario Int | IntFieldUpdateOperationsInput No
ticket Int | NullableIntFieldUpdateOperationsInput | Null Yes

fallas_maquinasUncheckedUpdateManyInput

Name Type Nullable
idFallas_maquinas Int | IntFieldUpdateOperationsInput No
maquina Int | IntFieldUpdateOperationsInput No
falla Int | IntFieldUpdateOperationsInput No
fecha_registro DateTime | DateTimeFieldUpdateOperationsInput No
estado Int | IntFieldUpdateOperationsInput No
usuario Int | IntFieldUpdateOperationsInput No
ticket Int | NullableIntFieldUpdateOperationsInput | Null Yes

familiarCreateInput

Name Type Nullable
idPersona Int | Null Yes
parentezco String | Null Yes
documento String | Null Yes
estado Int | Null Yes
nombre String | Null Yes
tipo_doc String | Null Yes
telefono String | Null Yes

familiarUncheckedCreateInput

Name Type Nullable
idFamiliar Int No
idPersona Int | Null Yes
parentezco String | Null Yes
documento String | Null Yes
estado Int | Null Yes
nombre String | Null Yes
tipo_doc String | Null Yes
telefono String | Null Yes

familiarUpdateInput

Name Type Nullable
idPersona Int | NullableIntFieldUpdateOperationsInput | Null Yes
parentezco String | NullableStringFieldUpdateOperationsInput | Null Yes
documento String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
nombre String | NullableStringFieldUpdateOperationsInput | Null Yes
tipo_doc String | NullableStringFieldUpdateOperationsInput | Null Yes
telefono String | NullableStringFieldUpdateOperationsInput | Null Yes

familiarUncheckedUpdateInput

Name Type Nullable
idFamiliar Int | IntFieldUpdateOperationsInput No
idPersona Int | NullableIntFieldUpdateOperationsInput | Null Yes
parentezco String | NullableStringFieldUpdateOperationsInput | Null Yes
documento String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
nombre String | NullableStringFieldUpdateOperationsInput | Null Yes
tipo_doc String | NullableStringFieldUpdateOperationsInput | Null Yes
telefono String | NullableStringFieldUpdateOperationsInput | Null Yes

familiarCreateManyInput

Name Type Nullable
idFamiliar Int No
idPersona Int | Null Yes
parentezco String | Null Yes
documento String | Null Yes
estado Int | Null Yes
nombre String | Null Yes
tipo_doc String | Null Yes
telefono String | Null Yes

familiarUpdateManyMutationInput

Name Type Nullable
idPersona Int | NullableIntFieldUpdateOperationsInput | Null Yes
parentezco String | NullableStringFieldUpdateOperationsInput | Null Yes
documento String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
nombre String | NullableStringFieldUpdateOperationsInput | Null Yes
tipo_doc String | NullableStringFieldUpdateOperationsInput | Null Yes
telefono String | NullableStringFieldUpdateOperationsInput | Null Yes

familiarUncheckedUpdateManyInput

Name Type Nullable
idFamiliar Int | IntFieldUpdateOperationsInput No
idPersona Int | NullableIntFieldUpdateOperationsInput | Null Yes
parentezco String | NullableStringFieldUpdateOperationsInput | Null Yes
documento String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
nombre String | NullableStringFieldUpdateOperationsInput | Null Yes
tipo_doc String | NullableStringFieldUpdateOperationsInput | Null Yes
telefono String | NullableStringFieldUpdateOperationsInput | Null Yes

fechalimiteprogramadoCreateInput

Name Type Nullable
fecha DateTime | Null Yes
usuario Int | Null Yes
estado Int | Null Yes
f_registro DateTime | Null Yes

fechalimiteprogramadoUncheckedCreateInput

Name Type Nullable
idFechaLimiteProgramado Int No
fecha DateTime | Null Yes
usuario Int | Null Yes
estado Int | Null Yes
f_registro DateTime | Null Yes

fechalimiteprogramadoUpdateInput

Name Type Nullable
fecha DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
f_registro DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

fechalimiteprogramadoUncheckedUpdateInput

Name Type Nullable
idFechaLimiteProgramado Int | IntFieldUpdateOperationsInput No
fecha DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
f_registro DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

fechalimiteprogramadoCreateManyInput

Name Type Nullable
idFechaLimiteProgramado Int No
fecha DateTime | Null Yes
usuario Int | Null Yes
estado Int | Null Yes
f_registro DateTime | Null Yes

fechalimiteprogramadoUpdateManyMutationInput

Name Type Nullable
fecha DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
f_registro DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

fechalimiteprogramadoUncheckedUpdateManyInput

Name Type Nullable
idFechaLimiteProgramado Int | IntFieldUpdateOperationsInput No
fecha DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
f_registro DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

institucionCreateInput

Name Type Nullable
nombre String | Null Yes
direccion String | Null Yes
telefono String | Null Yes
email String | Null Yes
web String | Null Yes
estado Int | Null Yes

institucionUncheckedCreateInput

Name Type Nullable
idInstitucion Int No
nombre String | Null Yes
direccion String | Null Yes
telefono String | Null Yes
email String | Null Yes
web String | Null Yes
estado Int | Null Yes

institucionUpdateInput

Name Type Nullable
nombre String | NullableStringFieldUpdateOperationsInput | Null Yes
direccion String | NullableStringFieldUpdateOperationsInput | Null Yes
telefono String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
web String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes

institucionUncheckedUpdateInput

Name Type Nullable
idInstitucion Int | IntFieldUpdateOperationsInput No
nombre String | NullableStringFieldUpdateOperationsInput | Null Yes
direccion String | NullableStringFieldUpdateOperationsInput | Null Yes
telefono String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
web String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes

institucionCreateManyInput

Name Type Nullable
idInstitucion Int No
nombre String | Null Yes
direccion String | Null Yes
telefono String | Null Yes
email String | Null Yes
web String | Null Yes
estado Int | Null Yes

institucionUpdateManyMutationInput

Name Type Nullable
nombre String | NullableStringFieldUpdateOperationsInput | Null Yes
direccion String | NullableStringFieldUpdateOperationsInput | Null Yes
telefono String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
web String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes

institucionUncheckedUpdateManyInput

Name Type Nullable
idInstitucion Int | IntFieldUpdateOperationsInput No
nombre String | NullableStringFieldUpdateOperationsInput | Null Yes
direccion String | NullableStringFieldUpdateOperationsInput | Null Yes
telefono String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
web String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes

licenciaCreateInput

Name Type Nullable
titulo String No
descripcion String | Null Yes
dias Int | Null Yes
estado Int | Null Yes

licenciaUncheckedCreateInput

Name Type Nullable
idLicencia Int No
titulo String No
descripcion String | Null Yes
dias Int | Null Yes
estado Int | Null Yes

licenciaUpdateInput

Name Type Nullable
titulo String | StringFieldUpdateOperationsInput No
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
dias Int | NullableIntFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes

licenciaUncheckedUpdateInput

Name Type Nullable
idLicencia Int | IntFieldUpdateOperationsInput No
titulo String | StringFieldUpdateOperationsInput No
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
dias Int | NullableIntFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes

licenciaCreateManyInput

Name Type Nullable
idLicencia Int No
titulo String No
descripcion String | Null Yes
dias Int | Null Yes
estado Int | Null Yes

licenciaUpdateManyMutationInput

Name Type Nullable
titulo String | StringFieldUpdateOperationsInput No
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
dias Int | NullableIntFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes

licenciaUncheckedUpdateManyInput

Name Type Nullable
idLicencia Int | IntFieldUpdateOperationsInput No
titulo String | StringFieldUpdateOperationsInput No
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
dias Int | NullableIntFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes

licencia_personaCreateInput

Name Type Nullable
idLicencia Int No
idPersona Int No
fecha_registro DateTime No
usuario Int No
estado Int No
descripcion String | Null Yes
documento String No
dias Int No
f_inicio DateTime No
f_fin DateTime No

licencia_personaUncheckedCreateInput

Name Type Nullable
idLicenciaPersona Int No
idLicencia Int No
idPersona Int No
fecha_registro DateTime No
usuario Int No
estado Int No
descripcion String | Null Yes
documento String No
dias Int No
f_inicio DateTime No
f_fin DateTime No

licencia_personaUpdateInput

Name Type Nullable
idLicencia Int | IntFieldUpdateOperationsInput No
idPersona Int | IntFieldUpdateOperationsInput No
fecha_registro DateTime | DateTimeFieldUpdateOperationsInput No
usuario Int | IntFieldUpdateOperationsInput No
estado Int | IntFieldUpdateOperationsInput No
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
documento String | StringFieldUpdateOperationsInput No
dias Int | IntFieldUpdateOperationsInput No
f_inicio DateTime | DateTimeFieldUpdateOperationsInput No
f_fin DateTime | DateTimeFieldUpdateOperationsInput No

licencia_personaUncheckedUpdateInput

Name Type Nullable
idLicenciaPersona Int | IntFieldUpdateOperationsInput No
idLicencia Int | IntFieldUpdateOperationsInput No
idPersona Int | IntFieldUpdateOperationsInput No
fecha_registro DateTime | DateTimeFieldUpdateOperationsInput No
usuario Int | IntFieldUpdateOperationsInput No
estado Int | IntFieldUpdateOperationsInput No
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
documento String | StringFieldUpdateOperationsInput No
dias Int | IntFieldUpdateOperationsInput No
f_inicio DateTime | DateTimeFieldUpdateOperationsInput No
f_fin DateTime | DateTimeFieldUpdateOperationsInput No

licencia_personaCreateManyInput

Name Type Nullable
idLicenciaPersona Int No
idLicencia Int No
idPersona Int No
fecha_registro DateTime No
usuario Int No
estado Int No
descripcion String | Null Yes
documento String No
dias Int No
f_inicio DateTime No
f_fin DateTime No

licencia_personaUpdateManyMutationInput

Name Type Nullable
idLicencia Int | IntFieldUpdateOperationsInput No
idPersona Int | IntFieldUpdateOperationsInput No
fecha_registro DateTime | DateTimeFieldUpdateOperationsInput No
usuario Int | IntFieldUpdateOperationsInput No
estado Int | IntFieldUpdateOperationsInput No
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
documento String | StringFieldUpdateOperationsInput No
dias Int | IntFieldUpdateOperationsInput No
f_inicio DateTime | DateTimeFieldUpdateOperationsInput No
f_fin DateTime | DateTimeFieldUpdateOperationsInput No

licencia_personaUncheckedUpdateManyInput

Name Type Nullable
idLicenciaPersona Int | IntFieldUpdateOperationsInput No
idLicencia Int | IntFieldUpdateOperationsInput No
idPersona Int | IntFieldUpdateOperationsInput No
fecha_registro DateTime | DateTimeFieldUpdateOperationsInput No
usuario Int | IntFieldUpdateOperationsInput No
estado Int | IntFieldUpdateOperationsInput No
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
documento String | StringFieldUpdateOperationsInput No
dias Int | IntFieldUpdateOperationsInput No
f_inicio DateTime | DateTimeFieldUpdateOperationsInput No
f_fin DateTime | DateTimeFieldUpdateOperationsInput No

maquinasCreateInput

Name Type Nullable
nro_egm Int | Null Yes
fabricante String | Null Yes
modelo String | Null Yes
p_pago String | Null Yes
denom String | Null Yes
juego String | Null Yes
nro_serie String | Null Yes
programa String | Null Yes
credito String | Null Yes
estado String | Null Yes
img String | Null Yes
ap_minima String | Null Yes
ap_maxima String | Null Yes
cant_lineas String | Null Yes
tipo_juego String | Null Yes

maquinasUncheckedCreateInput

Name Type Nullable
idMaquina Int No
nro_egm Int | Null Yes
fabricante String | Null Yes
modelo String | Null Yes
p_pago String | Null Yes
denom String | Null Yes
juego String | Null Yes
nro_serie String | Null Yes
programa String | Null Yes
credito String | Null Yes
estado String | Null Yes
img String | Null Yes
ap_minima String | Null Yes
ap_maxima String | Null Yes
cant_lineas String | Null Yes
tipo_juego String | Null Yes

maquinasUpdateInput

Name Type Nullable
nro_egm Int | NullableIntFieldUpdateOperationsInput | Null Yes
fabricante String | NullableStringFieldUpdateOperationsInput | Null Yes
modelo String | NullableStringFieldUpdateOperationsInput | Null Yes
p_pago String | NullableStringFieldUpdateOperationsInput | Null Yes
denom String | NullableStringFieldUpdateOperationsInput | Null Yes
juego String | NullableStringFieldUpdateOperationsInput | Null Yes
nro_serie String | NullableStringFieldUpdateOperationsInput | Null Yes
programa String | NullableStringFieldUpdateOperationsInput | Null Yes
credito String | NullableStringFieldUpdateOperationsInput | Null Yes
estado String | NullableStringFieldUpdateOperationsInput | Null Yes
img String | NullableStringFieldUpdateOperationsInput | Null Yes
ap_minima String | NullableStringFieldUpdateOperationsInput | Null Yes
ap_maxima String | NullableStringFieldUpdateOperationsInput | Null Yes
cant_lineas String | NullableStringFieldUpdateOperationsInput | Null Yes
tipo_juego String | NullableStringFieldUpdateOperationsInput | Null Yes

maquinasUncheckedUpdateInput

Name Type Nullable
idMaquina Int | IntFieldUpdateOperationsInput No
nro_egm Int | NullableIntFieldUpdateOperationsInput | Null Yes
fabricante String | NullableStringFieldUpdateOperationsInput | Null Yes
modelo String | NullableStringFieldUpdateOperationsInput | Null Yes
p_pago String | NullableStringFieldUpdateOperationsInput | Null Yes
denom String | NullableStringFieldUpdateOperationsInput | Null Yes
juego String | NullableStringFieldUpdateOperationsInput | Null Yes
nro_serie String | NullableStringFieldUpdateOperationsInput | Null Yes
programa String | NullableStringFieldUpdateOperationsInput | Null Yes
credito String | NullableStringFieldUpdateOperationsInput | Null Yes
estado String | NullableStringFieldUpdateOperationsInput | Null Yes
img String | NullableStringFieldUpdateOperationsInput | Null Yes
ap_minima String | NullableStringFieldUpdateOperationsInput | Null Yes
ap_maxima String | NullableStringFieldUpdateOperationsInput | Null Yes
cant_lineas String | NullableStringFieldUpdateOperationsInput | Null Yes
tipo_juego String | NullableStringFieldUpdateOperationsInput | Null Yes

maquinasCreateManyInput

Name Type Nullable
idMaquina Int No
nro_egm Int | Null Yes
fabricante String | Null Yes
modelo String | Null Yes
p_pago String | Null Yes
denom String | Null Yes
juego String | Null Yes
nro_serie String | Null Yes
programa String | Null Yes
credito String | Null Yes
estado String | Null Yes
img String | Null Yes
ap_minima String | Null Yes
ap_maxima String | Null Yes
cant_lineas String | Null Yes
tipo_juego String | Null Yes

maquinasUpdateManyMutationInput

Name Type Nullable
nro_egm Int | NullableIntFieldUpdateOperationsInput | Null Yes
fabricante String | NullableStringFieldUpdateOperationsInput | Null Yes
modelo String | NullableStringFieldUpdateOperationsInput | Null Yes
p_pago String | NullableStringFieldUpdateOperationsInput | Null Yes
denom String | NullableStringFieldUpdateOperationsInput | Null Yes
juego String | NullableStringFieldUpdateOperationsInput | Null Yes
nro_serie String | NullableStringFieldUpdateOperationsInput | Null Yes
programa String | NullableStringFieldUpdateOperationsInput | Null Yes
credito String | NullableStringFieldUpdateOperationsInput | Null Yes
estado String | NullableStringFieldUpdateOperationsInput | Null Yes
img String | NullableStringFieldUpdateOperationsInput | Null Yes
ap_minima String | NullableStringFieldUpdateOperationsInput | Null Yes
ap_maxima String | NullableStringFieldUpdateOperationsInput | Null Yes
cant_lineas String | NullableStringFieldUpdateOperationsInput | Null Yes
tipo_juego String | NullableStringFieldUpdateOperationsInput | Null Yes

maquinasUncheckedUpdateManyInput

Name Type Nullable
idMaquina Int | IntFieldUpdateOperationsInput No
nro_egm Int | NullableIntFieldUpdateOperationsInput | Null Yes
fabricante String | NullableStringFieldUpdateOperationsInput | Null Yes
modelo String | NullableStringFieldUpdateOperationsInput | Null Yes
p_pago String | NullableStringFieldUpdateOperationsInput | Null Yes
denom String | NullableStringFieldUpdateOperationsInput | Null Yes
juego String | NullableStringFieldUpdateOperationsInput | Null Yes
nro_serie String | NullableStringFieldUpdateOperationsInput | Null Yes
programa String | NullableStringFieldUpdateOperationsInput | Null Yes
credito String | NullableStringFieldUpdateOperationsInput | Null Yes
estado String | NullableStringFieldUpdateOperationsInput | Null Yes
img String | NullableStringFieldUpdateOperationsInput | Null Yes
ap_minima String | NullableStringFieldUpdateOperationsInput | Null Yes
ap_maxima String | NullableStringFieldUpdateOperationsInput | Null Yes
cant_lineas String | NullableStringFieldUpdateOperationsInput | Null Yes
tipo_juego String | NullableStringFieldUpdateOperationsInput | Null Yes

maquinas_piezasCreateInput

Name Type Nullable
nro_egm Int No
modelo String No
tipo_aceptbill String No
tipo_impre String No
tipo_moni String No

maquinas_piezasUncheckedCreateInput

Name Type Nullable
nro_egm Int No
modelo String No
tipo_aceptbill String No
tipo_impre String No
tipo_moni String No

maquinas_piezasUpdateInput

Name Type Nullable
nro_egm Int | IntFieldUpdateOperationsInput No
modelo String | StringFieldUpdateOperationsInput No
tipo_aceptbill String | StringFieldUpdateOperationsInput No
tipo_impre String | StringFieldUpdateOperationsInput No
tipo_moni String | StringFieldUpdateOperationsInput No

maquinas_piezasUncheckedUpdateInput

Name Type Nullable
nro_egm Int | IntFieldUpdateOperationsInput No
modelo String | StringFieldUpdateOperationsInput No
tipo_aceptbill String | StringFieldUpdateOperationsInput No
tipo_impre String | StringFieldUpdateOperationsInput No
tipo_moni String | StringFieldUpdateOperationsInput No

maquinas_piezasCreateManyInput

Name Type Nullable
nro_egm Int No
modelo String No
tipo_aceptbill String No
tipo_impre String No
tipo_moni String No

maquinas_piezasUpdateManyMutationInput

Name Type Nullable
nro_egm Int | IntFieldUpdateOperationsInput No
modelo String | StringFieldUpdateOperationsInput No
tipo_aceptbill String | StringFieldUpdateOperationsInput No
tipo_impre String | StringFieldUpdateOperationsInput No
tipo_moni String | StringFieldUpdateOperationsInput No

maquinas_piezasUncheckedUpdateManyInput

Name Type Nullable
nro_egm Int | IntFieldUpdateOperationsInput No
modelo String | StringFieldUpdateOperationsInput No
tipo_aceptbill String | StringFieldUpdateOperationsInput No
tipo_impre String | StringFieldUpdateOperationsInput No
tipo_moni String | StringFieldUpdateOperationsInput No

menu_personalCreateInput

Name Type Nullable
estado Int | Null Yes
f_proceso DateTime | Null Yes
descripcion String | Null Yes
usuario_carga Int | Null Yes
fecha_menu DateTime | Null Yes
tipo_menu String | Null Yes
valor Decimal | Null Yes

menu_personalUncheckedCreateInput

Name Type Nullable
idMenuPersonal Int No
estado Int | Null Yes
f_proceso DateTime | Null Yes
descripcion String | Null Yes
usuario_carga Int | Null Yes
fecha_menu DateTime | Null Yes
tipo_menu String | Null Yes
valor Decimal | Null Yes

menu_personalUpdateInput

Name Type Nullable
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
f_proceso DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
usuario_carga Int | NullableIntFieldUpdateOperationsInput | Null Yes
fecha_menu DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
tipo_menu String | NullableStringFieldUpdateOperationsInput | Null Yes
valor Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes

menu_personalUncheckedUpdateInput

Name Type Nullable
idMenuPersonal Int | IntFieldUpdateOperationsInput No
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
f_proceso DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
usuario_carga Int | NullableIntFieldUpdateOperationsInput | Null Yes
fecha_menu DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
tipo_menu String | NullableStringFieldUpdateOperationsInput | Null Yes
valor Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes

menu_personalCreateManyInput

Name Type Nullable
idMenuPersonal Int No
estado Int | Null Yes
f_proceso DateTime | Null Yes
descripcion String | Null Yes
usuario_carga Int | Null Yes
fecha_menu DateTime | Null Yes
tipo_menu String | Null Yes
valor Decimal | Null Yes

menu_personalUpdateManyMutationInput

Name Type Nullable
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
f_proceso DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
usuario_carga Int | NullableIntFieldUpdateOperationsInput | Null Yes
fecha_menu DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
tipo_menu String | NullableStringFieldUpdateOperationsInput | Null Yes
valor Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes

menu_personalUncheckedUpdateManyInput

Name Type Nullable
idMenuPersonal Int | IntFieldUpdateOperationsInput No
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
f_proceso DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
usuario_carga Int | NullableIntFieldUpdateOperationsInput | Null Yes
fecha_menu DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
tipo_menu String | NullableStringFieldUpdateOperationsInput | Null Yes
valor Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes

menu_personal_20190904CreateInput

Name Type Nullable
estado Int | Null Yes
f_proceso DateTime | Null Yes
descripcion String | Null Yes
usuario_carga Int | Null Yes
fecha_menu DateTime | Null Yes

menu_personal_20190904UncheckedCreateInput

Name Type Nullable
idMenuPersonal Int No
estado Int | Null Yes
f_proceso DateTime | Null Yes
descripcion String | Null Yes
usuario_carga Int | Null Yes
fecha_menu DateTime | Null Yes

menu_personal_20190904UpdateInput

Name Type Nullable
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
f_proceso DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
usuario_carga Int | NullableIntFieldUpdateOperationsInput | Null Yes
fecha_menu DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

menu_personal_20190904UncheckedUpdateInput

Name Type Nullable
idMenuPersonal Int | IntFieldUpdateOperationsInput No
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
f_proceso DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
usuario_carga Int | NullableIntFieldUpdateOperationsInput | Null Yes
fecha_menu DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

menu_personal_20190904CreateManyInput

Name Type Nullable
idMenuPersonal Int No
estado Int | Null Yes
f_proceso DateTime | Null Yes
descripcion String | Null Yes
usuario_carga Int | Null Yes
fecha_menu DateTime | Null Yes

menu_personal_20190904UpdateManyMutationInput

Name Type Nullable
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
f_proceso DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
usuario_carga Int | NullableIntFieldUpdateOperationsInput | Null Yes
fecha_menu DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

menu_personal_20190904UncheckedUpdateManyInput

Name Type Nullable
idMenuPersonal Int | IntFieldUpdateOperationsInput No
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
f_proceso DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
usuario_carga Int | NullableIntFieldUpdateOperationsInput | Null Yes
fecha_menu DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

menu_personal_oldCreateInput

Name Type Nullable
estado Int | Null Yes
f_proceso DateTime | Null Yes
descripcion String | Null Yes
usuario_carga Int | Null Yes
fecha_menu DateTime | Null Yes

menu_personal_oldUncheckedCreateInput

Name Type Nullable
idMenuPersonal Int No
estado Int | Null Yes
f_proceso DateTime | Null Yes
descripcion String | Null Yes
usuario_carga Int | Null Yes
fecha_menu DateTime | Null Yes

menu_personal_oldUpdateInput

Name Type Nullable
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
f_proceso DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
usuario_carga Int | NullableIntFieldUpdateOperationsInput | Null Yes
fecha_menu DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

menu_personal_oldUncheckedUpdateInput

Name Type Nullable
idMenuPersonal Int | IntFieldUpdateOperationsInput No
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
f_proceso DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
usuario_carga Int | NullableIntFieldUpdateOperationsInput | Null Yes
fecha_menu DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

menu_personal_oldCreateManyInput

Name Type Nullable
idMenuPersonal Int No
estado Int | Null Yes
f_proceso DateTime | Null Yes
descripcion String | Null Yes
usuario_carga Int | Null Yes
fecha_menu DateTime | Null Yes

menu_personal_oldUpdateManyMutationInput

Name Type Nullable
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
f_proceso DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
usuario_carga Int | NullableIntFieldUpdateOperationsInput | Null Yes
fecha_menu DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

menu_personal_oldUncheckedUpdateManyInput

Name Type Nullable
idMenuPersonal Int | IntFieldUpdateOperationsInput No
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
f_proceso DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
usuario_carga Int | NullableIntFieldUpdateOperationsInput | Null Yes
fecha_menu DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

movimiento_articuloCreateInput

Name Type Nullable
articulo Int No
cantidad Int No
fecha_hora DateTime No
movimiento String No
usuario Int No
locacion String | Null Yes

movimiento_articuloUncheckedCreateInput

Name Type Nullable
idMovimiento_articulo Int No
articulo Int No
cantidad Int No
fecha_hora DateTime No
movimiento String No
usuario Int No
locacion String | Null Yes

movimiento_articuloUpdateInput

Name Type Nullable
articulo Int | IntFieldUpdateOperationsInput No
cantidad Int | IntFieldUpdateOperationsInput No
fecha_hora DateTime | DateTimeFieldUpdateOperationsInput No
movimiento String | StringFieldUpdateOperationsInput No
usuario Int | IntFieldUpdateOperationsInput No
locacion String | NullableStringFieldUpdateOperationsInput | Null Yes

movimiento_articuloUncheckedUpdateInput

Name Type Nullable
idMovimiento_articulo Int | IntFieldUpdateOperationsInput No
articulo Int | IntFieldUpdateOperationsInput No
cantidad Int | IntFieldUpdateOperationsInput No
fecha_hora DateTime | DateTimeFieldUpdateOperationsInput No
movimiento String | StringFieldUpdateOperationsInput No
usuario Int | IntFieldUpdateOperationsInput No
locacion String | NullableStringFieldUpdateOperationsInput | Null Yes

movimiento_articuloCreateManyInput

Name Type Nullable
idMovimiento_articulo Int No
articulo Int No
cantidad Int No
fecha_hora DateTime No
movimiento String No
usuario Int No
locacion String | Null Yes

movimiento_articuloUpdateManyMutationInput

Name Type Nullable
articulo Int | IntFieldUpdateOperationsInput No
cantidad Int | IntFieldUpdateOperationsInput No
fecha_hora DateTime | DateTimeFieldUpdateOperationsInput No
movimiento String | StringFieldUpdateOperationsInput No
usuario Int | IntFieldUpdateOperationsInput No
locacion String | NullableStringFieldUpdateOperationsInput | Null Yes

movimiento_articuloUncheckedUpdateManyInput

Name Type Nullable
idMovimiento_articulo Int | IntFieldUpdateOperationsInput No
articulo Int | IntFieldUpdateOperationsInput No
cantidad Int | IntFieldUpdateOperationsInput No
fecha_hora DateTime | DateTimeFieldUpdateOperationsInput No
movimiento String | StringFieldUpdateOperationsInput No
usuario Int | IntFieldUpdateOperationsInput No
locacion String | NullableStringFieldUpdateOperationsInput | Null Yes

novedadesCreateInput

Name Type Nullable
texto String | Null Yes
referencia Int No
estado Int No
f_proceso DateTime No
usuario Int No
tipo String No

novedadesUncheckedCreateInput

Name Type Nullable
idNovedades Int No
texto String | Null Yes
referencia Int No
estado Int No
f_proceso DateTime No
usuario Int No
tipo String No

novedadesUpdateInput

Name Type Nullable
texto String | NullableStringFieldUpdateOperationsInput | Null Yes
referencia Int | IntFieldUpdateOperationsInput No
estado Int | IntFieldUpdateOperationsInput No
f_proceso DateTime | DateTimeFieldUpdateOperationsInput No
usuario Int | IntFieldUpdateOperationsInput No
tipo String | StringFieldUpdateOperationsInput No

novedadesUncheckedUpdateInput

Name Type Nullable
idNovedades Int | IntFieldUpdateOperationsInput No
texto String | NullableStringFieldUpdateOperationsInput | Null Yes
referencia Int | IntFieldUpdateOperationsInput No
estado Int | IntFieldUpdateOperationsInput No
f_proceso DateTime | DateTimeFieldUpdateOperationsInput No
usuario Int | IntFieldUpdateOperationsInput No
tipo String | StringFieldUpdateOperationsInput No

novedadesCreateManyInput

Name Type Nullable
idNovedades Int No
texto String | Null Yes
referencia Int No
estado Int No
f_proceso DateTime No
usuario Int No
tipo String No

novedadesUpdateManyMutationInput

Name Type Nullable
texto String | NullableStringFieldUpdateOperationsInput | Null Yes
referencia Int | IntFieldUpdateOperationsInput No
estado Int | IntFieldUpdateOperationsInput No
f_proceso DateTime | DateTimeFieldUpdateOperationsInput No
usuario Int | IntFieldUpdateOperationsInput No
tipo String | StringFieldUpdateOperationsInput No

novedadesUncheckedUpdateManyInput

Name Type Nullable
idNovedades Int | IntFieldUpdateOperationsInput No
texto String | NullableStringFieldUpdateOperationsInput | Null Yes
referencia Int | IntFieldUpdateOperationsInput No
estado Int | IntFieldUpdateOperationsInput No
f_proceso DateTime | DateTimeFieldUpdateOperationsInput No
usuario Int | IntFieldUpdateOperationsInput No
tipo String | StringFieldUpdateOperationsInput No

numericoCreateInput

Name Type Nullable
numericocol Int No

numericoUncheckedCreateInput

Name Type Nullable
numericocol Int No

numericoUpdateInput

Name Type Nullable
numericocol Int | IntFieldUpdateOperationsInput No

numericoUncheckedUpdateInput

Name Type Nullable
numericocol Int | IntFieldUpdateOperationsInput No

numericoCreateManyInput

Name Type Nullable
numericocol Int No

numericoUpdateManyMutationInput

Name Type Nullable
numericocol Int | IntFieldUpdateOperationsInput No

numericoUncheckedUpdateManyInput

Name Type Nullable
numericocol Int | IntFieldUpdateOperationsInput No

parametro_menuCreateInput

Name Type Nullable
dia String No
tiempo String No
cantidad Int No
f_proceso DateTime | Null Yes
usuario_carga Int | Null Yes
estado Int | Null Yes

parametro_menuUncheckedCreateInput

Name Type Nullable
idParametroMenu Int No
dia String No
tiempo String No
cantidad Int No
f_proceso DateTime | Null Yes
usuario_carga Int | Null Yes
estado Int | Null Yes

parametro_menuUpdateInput

Name Type Nullable
dia String | StringFieldUpdateOperationsInput No
tiempo String | StringFieldUpdateOperationsInput No
cantidad Int | IntFieldUpdateOperationsInput No
f_proceso DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
usuario_carga Int | NullableIntFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes

parametro_menuUncheckedUpdateInput

Name Type Nullable
idParametroMenu Int | IntFieldUpdateOperationsInput No
dia String | StringFieldUpdateOperationsInput No
tiempo String | StringFieldUpdateOperationsInput No
cantidad Int | IntFieldUpdateOperationsInput No
f_proceso DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
usuario_carga Int | NullableIntFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes

parametro_menuCreateManyInput

Name Type Nullable
idParametroMenu Int No
dia String No
tiempo String No
cantidad Int No
f_proceso DateTime | Null Yes
usuario_carga Int | Null Yes
estado Int | Null Yes

parametro_menuUpdateManyMutationInput

Name Type Nullable
dia String | StringFieldUpdateOperationsInput No
tiempo String | StringFieldUpdateOperationsInput No
cantidad Int | IntFieldUpdateOperationsInput No
f_proceso DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
usuario_carga Int | NullableIntFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes

parametro_menuUncheckedUpdateManyInput

Name Type Nullable
idParametroMenu Int | IntFieldUpdateOperationsInput No
dia String | StringFieldUpdateOperationsInput No
tiempo String | StringFieldUpdateOperationsInput No
cantidad Int | IntFieldUpdateOperationsInput No
f_proceso DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
usuario_carga Int | NullableIntFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes

pedidoCreateInput

Name Type Nullable
idCalendarioMenu Int | Null Yes
idMenu Int | Null Yes
usuario Int | Null Yes
f_registro DateTime | Null Yes
f_listo DateTime | Null Yes
estado Int | Null Yes
persona Int | Null Yes
legajo String | Null Yes
persona_str String | Null Yes
descripcion String | Null Yes
importe_externo Decimal | Null Yes
importe_interno Decimal | Null Yes
idMenuBingo Int | Null Yes
turno String | Null Yes

pedidoUncheckedCreateInput

Name Type Nullable
idPedido Int No
idCalendarioMenu Int | Null Yes
idMenu Int | Null Yes
usuario Int | Null Yes
f_registro DateTime | Null Yes
f_listo DateTime | Null Yes
estado Int | Null Yes
persona Int | Null Yes
legajo String | Null Yes
persona_str String | Null Yes
descripcion String | Null Yes
importe_externo Decimal | Null Yes
importe_interno Decimal | Null Yes
idMenuBingo Int | Null Yes
turno String | Null Yes

pedidoUpdateInput

Name Type Nullable
idCalendarioMenu Int | NullableIntFieldUpdateOperationsInput | Null Yes
idMenu Int | NullableIntFieldUpdateOperationsInput | Null Yes
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes
f_registro DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
f_listo DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
persona Int | NullableIntFieldUpdateOperationsInput | Null Yes
legajo String | NullableStringFieldUpdateOperationsInput | Null Yes
persona_str String | NullableStringFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
importe_externo Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
importe_interno Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
idMenuBingo Int | NullableIntFieldUpdateOperationsInput | Null Yes
turno String | NullableStringFieldUpdateOperationsInput | Null Yes

pedidoUncheckedUpdateInput

Name Type Nullable
idPedido Int | IntFieldUpdateOperationsInput No
idCalendarioMenu Int | NullableIntFieldUpdateOperationsInput | Null Yes
idMenu Int | NullableIntFieldUpdateOperationsInput | Null Yes
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes
f_registro DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
f_listo DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
persona Int | NullableIntFieldUpdateOperationsInput | Null Yes
legajo String | NullableStringFieldUpdateOperationsInput | Null Yes
persona_str String | NullableStringFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
importe_externo Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
importe_interno Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
idMenuBingo Int | NullableIntFieldUpdateOperationsInput | Null Yes
turno String | NullableStringFieldUpdateOperationsInput | Null Yes

pedidoCreateManyInput

Name Type Nullable
idPedido Int No
idCalendarioMenu Int | Null Yes
idMenu Int | Null Yes
usuario Int | Null Yes
f_registro DateTime | Null Yes
f_listo DateTime | Null Yes
estado Int | Null Yes
persona Int | Null Yes
legajo String | Null Yes
persona_str String | Null Yes
descripcion String | Null Yes
importe_externo Decimal | Null Yes
importe_interno Decimal | Null Yes
idMenuBingo Int | Null Yes
turno String | Null Yes

pedidoUpdateManyMutationInput

Name Type Nullable
idCalendarioMenu Int | NullableIntFieldUpdateOperationsInput | Null Yes
idMenu Int | NullableIntFieldUpdateOperationsInput | Null Yes
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes
f_registro DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
f_listo DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
persona Int | NullableIntFieldUpdateOperationsInput | Null Yes
legajo String | NullableStringFieldUpdateOperationsInput | Null Yes
persona_str String | NullableStringFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
importe_externo Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
importe_interno Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
idMenuBingo Int | NullableIntFieldUpdateOperationsInput | Null Yes
turno String | NullableStringFieldUpdateOperationsInput | Null Yes

pedidoUncheckedUpdateManyInput

Name Type Nullable
idPedido Int | IntFieldUpdateOperationsInput No
idCalendarioMenu Int | NullableIntFieldUpdateOperationsInput | Null Yes
idMenu Int | NullableIntFieldUpdateOperationsInput | Null Yes
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes
f_registro DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
f_listo DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
persona Int | NullableIntFieldUpdateOperationsInput | Null Yes
legajo String | NullableStringFieldUpdateOperationsInput | Null Yes
persona_str String | NullableStringFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
importe_externo Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
importe_interno Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
idMenuBingo Int | NullableIntFieldUpdateOperationsInput | Null Yes
turno String | NullableStringFieldUpdateOperationsInput | Null Yes

pedido_oldCreateInput

Name Type Nullable
idCalendarioMenu Int | Null Yes
idMenu Int | Null Yes
usuario Int | Null Yes
f_registro DateTime | Null Yes
f_listo DateTime | Null Yes
estado Int | Null Yes
persona Int | Null Yes
legajo String | Null Yes
persona_str String | Null Yes
descripcion String | Null Yes

pedido_oldUncheckedCreateInput

Name Type Nullable
idPedido Int No
idCalendarioMenu Int | Null Yes
idMenu Int | Null Yes
usuario Int | Null Yes
f_registro DateTime | Null Yes
f_listo DateTime | Null Yes
estado Int | Null Yes
persona Int | Null Yes
legajo String | Null Yes
persona_str String | Null Yes
descripcion String | Null Yes

pedido_oldUpdateInput

Name Type Nullable
idCalendarioMenu Int | NullableIntFieldUpdateOperationsInput | Null Yes
idMenu Int | NullableIntFieldUpdateOperationsInput | Null Yes
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes
f_registro DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
f_listo DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
persona Int | NullableIntFieldUpdateOperationsInput | Null Yes
legajo String | NullableStringFieldUpdateOperationsInput | Null Yes
persona_str String | NullableStringFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes

pedido_oldUncheckedUpdateInput

Name Type Nullable
idPedido Int | IntFieldUpdateOperationsInput No
idCalendarioMenu Int | NullableIntFieldUpdateOperationsInput | Null Yes
idMenu Int | NullableIntFieldUpdateOperationsInput | Null Yes
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes
f_registro DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
f_listo DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
persona Int | NullableIntFieldUpdateOperationsInput | Null Yes
legajo String | NullableStringFieldUpdateOperationsInput | Null Yes
persona_str String | NullableStringFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes

pedido_oldCreateManyInput

Name Type Nullable
idPedido Int No
idCalendarioMenu Int | Null Yes
idMenu Int | Null Yes
usuario Int | Null Yes
f_registro DateTime | Null Yes
f_listo DateTime | Null Yes
estado Int | Null Yes
persona Int | Null Yes
legajo String | Null Yes
persona_str String | Null Yes
descripcion String | Null Yes

pedido_oldUpdateManyMutationInput

Name Type Nullable
idCalendarioMenu Int | NullableIntFieldUpdateOperationsInput | Null Yes
idMenu Int | NullableIntFieldUpdateOperationsInput | Null Yes
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes
f_registro DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
f_listo DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
persona Int | NullableIntFieldUpdateOperationsInput | Null Yes
legajo String | NullableStringFieldUpdateOperationsInput | Null Yes
persona_str String | NullableStringFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes

pedido_oldUncheckedUpdateManyInput

Name Type Nullable
idPedido Int | IntFieldUpdateOperationsInput No
idCalendarioMenu Int | NullableIntFieldUpdateOperationsInput | Null Yes
idMenu Int | NullableIntFieldUpdateOperationsInput | Null Yes
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes
f_registro DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
f_listo DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
persona Int | NullableIntFieldUpdateOperationsInput | Null Yes
legajo String | NullableStringFieldUpdateOperationsInput | Null Yes
persona_str String | NullableStringFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes

permisosCreateInput

Name Type Nullable
nombre String No
permisos String | Null Yes
estado Boolean | Null Yes
fecha_registro DateTime | Null Yes

permisosUncheckedCreateInput

Name Type Nullable
idPermiso Int No
nombre String No
permisos String | Null Yes
estado Boolean | Null Yes
fecha_registro DateTime | Null Yes

permisosUpdateInput

Name Type Nullable
nombre String | StringFieldUpdateOperationsInput No
permisos String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
fecha_registro DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

permisosUncheckedUpdateInput

Name Type Nullable
idPermiso Int | IntFieldUpdateOperationsInput No
nombre String | StringFieldUpdateOperationsInput No
permisos String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
fecha_registro DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

permisosCreateManyInput

Name Type Nullable
idPermiso Int No
nombre String No
permisos String | Null Yes
estado Boolean | Null Yes
fecha_registro DateTime | Null Yes

permisosUpdateManyMutationInput

Name Type Nullable
nombre String | StringFieldUpdateOperationsInput No
permisos String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
fecha_registro DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

permisosUncheckedUpdateManyInput

Name Type Nullable
idPermiso Int | IntFieldUpdateOperationsInput No
nombre String | StringFieldUpdateOperationsInput No
permisos String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
fecha_registro DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

personaCreateInput

Name Type Nullable
id Int No
nombre String No
apellido String No
alta DateTime No
id_tarjeta Int | Null Yes
legajo String | Null Yes
preciohora Decimal No
extras Int No
id_bioadmin Int | Null Yes
imagen Bytes | Null Yes
inc_reportes Int | Null Yes
eliminado DateTime | Null Yes
fecha_ingreso DateTime | Null Yes
contrasena String | Null Yes
rol Int No
direccion String | Null Yes
dni String | Null Yes
email String | Null Yes
cel String | Null Yes
tel String | Null Yes
cp String | Null Yes
vehiculo String | Null Yes
patente String | Null Yes
id_provincia Int | Null Yes
localidad String | Null Yes
id_calendario Int | Null Yes
tarjetazk String | Null Yes
fecha_venc DateTime | Null Yes
id_sector_por_empresa Int | Null Yes
remoto_password String | Null Yes
envio_tarde Int No
ultima_fecha_envio_tarde DateTime | Null Yes
email_trabajo String | Null Yes
cuil String | Null Yes
pass_myweb String | Null Yes
modulos_habilitados String | Null Yes
IDPHONE String | Null Yes
ES_VISITA Int | Null Yes
V_EMPRESA_ORIGEN String | Null Yes
V_EMPLEADO_VISITA Int | Null Yes
V_PERTENENCIAS String | Null Yes
V_NRO_ART String | Null Yes
V_MOTIVO_VISITA String | Null Yes
V_VENCIDO Int | Null Yes
FECHA_NACIMIENTO DateTime | Null Yes
PUESTO_TRABAJO String | Null Yes

personaUncheckedCreateInput

Name Type Nullable
id Int No
nombre String No
apellido String No
alta DateTime No
id_tarjeta Int | Null Yes
legajo String | Null Yes
preciohora Decimal No
extras Int No
id_bioadmin Int | Null Yes
imagen Bytes | Null Yes
inc_reportes Int | Null Yes
eliminado DateTime | Null Yes
fecha_ingreso DateTime | Null Yes
contrasena String | Null Yes
rol Int No
direccion String | Null Yes
dni String | Null Yes
email String | Null Yes
cel String | Null Yes
tel String | Null Yes
cp String | Null Yes
vehiculo String | Null Yes
patente String | Null Yes
id_provincia Int | Null Yes
localidad String | Null Yes
id_calendario Int | Null Yes
tarjetazk String | Null Yes
fecha_venc DateTime | Null Yes
id_sector_por_empresa Int | Null Yes
remoto_password String | Null Yes
envio_tarde Int No
ultima_fecha_envio_tarde DateTime | Null Yes
email_trabajo String | Null Yes
cuil String | Null Yes
pass_myweb String | Null Yes
modulos_habilitados String | Null Yes
IDPHONE String | Null Yes
ES_VISITA Int | Null Yes
V_EMPRESA_ORIGEN String | Null Yes
V_EMPLEADO_VISITA Int | Null Yes
V_PERTENENCIAS String | Null Yes
V_NRO_ART String | Null Yes
V_MOTIVO_VISITA String | Null Yes
V_VENCIDO Int | Null Yes
FECHA_NACIMIENTO DateTime | Null Yes
PUESTO_TRABAJO String | Null Yes

personaUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
nombre String | StringFieldUpdateOperationsInput No
apellido String | StringFieldUpdateOperationsInput No
alta DateTime | DateTimeFieldUpdateOperationsInput No
id_tarjeta Int | NullableIntFieldUpdateOperationsInput | Null Yes
legajo String | NullableStringFieldUpdateOperationsInput | Null Yes
preciohora Decimal | DecimalFieldUpdateOperationsInput No
extras Int | IntFieldUpdateOperationsInput No
id_bioadmin Int | NullableIntFieldUpdateOperationsInput | Null Yes
imagen Bytes | NullableBytesFieldUpdateOperationsInput | Null Yes
inc_reportes Int | NullableIntFieldUpdateOperationsInput | Null Yes
eliminado DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
fecha_ingreso DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
contrasena String | NullableStringFieldUpdateOperationsInput | Null Yes
rol Int | IntFieldUpdateOperationsInput No
direccion String | NullableStringFieldUpdateOperationsInput | Null Yes
dni String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
cel String | NullableStringFieldUpdateOperationsInput | Null Yes
tel String | NullableStringFieldUpdateOperationsInput | Null Yes
cp String | NullableStringFieldUpdateOperationsInput | Null Yes
vehiculo String | NullableStringFieldUpdateOperationsInput | Null Yes
patente String | NullableStringFieldUpdateOperationsInput | Null Yes
id_provincia Int | NullableIntFieldUpdateOperationsInput | Null Yes
localidad String | NullableStringFieldUpdateOperationsInput | Null Yes
id_calendario Int | NullableIntFieldUpdateOperationsInput | Null Yes
tarjetazk String | NullableStringFieldUpdateOperationsInput | Null Yes
fecha_venc DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
id_sector_por_empresa Int | NullableIntFieldUpdateOperationsInput | Null Yes
remoto_password String | NullableStringFieldUpdateOperationsInput | Null Yes
envio_tarde Int | IntFieldUpdateOperationsInput No
ultima_fecha_envio_tarde DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
email_trabajo String | NullableStringFieldUpdateOperationsInput | Null Yes
cuil String | NullableStringFieldUpdateOperationsInput | Null Yes
pass_myweb String | NullableStringFieldUpdateOperationsInput | Null Yes
modulos_habilitados String | NullableStringFieldUpdateOperationsInput | Null Yes
IDPHONE String | NullableStringFieldUpdateOperationsInput | Null Yes
ES_VISITA Int | NullableIntFieldUpdateOperationsInput | Null Yes
V_EMPRESA_ORIGEN String | NullableStringFieldUpdateOperationsInput | Null Yes
V_EMPLEADO_VISITA Int | NullableIntFieldUpdateOperationsInput | Null Yes
V_PERTENENCIAS String | NullableStringFieldUpdateOperationsInput | Null Yes
V_NRO_ART String | NullableStringFieldUpdateOperationsInput | Null Yes
V_MOTIVO_VISITA String | NullableStringFieldUpdateOperationsInput | Null Yes
V_VENCIDO Int | NullableIntFieldUpdateOperationsInput | Null Yes
FECHA_NACIMIENTO DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
PUESTO_TRABAJO String | NullableStringFieldUpdateOperationsInput | Null Yes

personaUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
nombre String | StringFieldUpdateOperationsInput No
apellido String | StringFieldUpdateOperationsInput No
alta DateTime | DateTimeFieldUpdateOperationsInput No
id_tarjeta Int | NullableIntFieldUpdateOperationsInput | Null Yes
legajo String | NullableStringFieldUpdateOperationsInput | Null Yes
preciohora Decimal | DecimalFieldUpdateOperationsInput No
extras Int | IntFieldUpdateOperationsInput No
id_bioadmin Int | NullableIntFieldUpdateOperationsInput | Null Yes
imagen Bytes | NullableBytesFieldUpdateOperationsInput | Null Yes
inc_reportes Int | NullableIntFieldUpdateOperationsInput | Null Yes
eliminado DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
fecha_ingreso DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
contrasena String | NullableStringFieldUpdateOperationsInput | Null Yes
rol Int | IntFieldUpdateOperationsInput No
direccion String | NullableStringFieldUpdateOperationsInput | Null Yes
dni String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
cel String | NullableStringFieldUpdateOperationsInput | Null Yes
tel String | NullableStringFieldUpdateOperationsInput | Null Yes
cp String | NullableStringFieldUpdateOperationsInput | Null Yes
vehiculo String | NullableStringFieldUpdateOperationsInput | Null Yes
patente String | NullableStringFieldUpdateOperationsInput | Null Yes
id_provincia Int | NullableIntFieldUpdateOperationsInput | Null Yes
localidad String | NullableStringFieldUpdateOperationsInput | Null Yes
id_calendario Int | NullableIntFieldUpdateOperationsInput | Null Yes
tarjetazk String | NullableStringFieldUpdateOperationsInput | Null Yes
fecha_venc DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
id_sector_por_empresa Int | NullableIntFieldUpdateOperationsInput | Null Yes
remoto_password String | NullableStringFieldUpdateOperationsInput | Null Yes
envio_tarde Int | IntFieldUpdateOperationsInput No
ultima_fecha_envio_tarde DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
email_trabajo String | NullableStringFieldUpdateOperationsInput | Null Yes
cuil String | NullableStringFieldUpdateOperationsInput | Null Yes
pass_myweb String | NullableStringFieldUpdateOperationsInput | Null Yes
modulos_habilitados String | NullableStringFieldUpdateOperationsInput | Null Yes
IDPHONE String | NullableStringFieldUpdateOperationsInput | Null Yes
ES_VISITA Int | NullableIntFieldUpdateOperationsInput | Null Yes
V_EMPRESA_ORIGEN String | NullableStringFieldUpdateOperationsInput | Null Yes
V_EMPLEADO_VISITA Int | NullableIntFieldUpdateOperationsInput | Null Yes
V_PERTENENCIAS String | NullableStringFieldUpdateOperationsInput | Null Yes
V_NRO_ART String | NullableStringFieldUpdateOperationsInput | Null Yes
V_MOTIVO_VISITA String | NullableStringFieldUpdateOperationsInput | Null Yes
V_VENCIDO Int | NullableIntFieldUpdateOperationsInput | Null Yes
FECHA_NACIMIENTO DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
PUESTO_TRABAJO String | NullableStringFieldUpdateOperationsInput | Null Yes

personaCreateManyInput

Name Type Nullable
id Int No
nombre String No
apellido String No
alta DateTime No
id_tarjeta Int | Null Yes
legajo String | Null Yes
preciohora Decimal No
extras Int No
id_bioadmin Int | Null Yes
imagen Bytes | Null Yes
inc_reportes Int | Null Yes
eliminado DateTime | Null Yes
fecha_ingreso DateTime | Null Yes
contrasena String | Null Yes
rol Int No
direccion String | Null Yes
dni String | Null Yes
email String | Null Yes
cel String | Null Yes
tel String | Null Yes
cp String | Null Yes
vehiculo String | Null Yes
patente String | Null Yes
id_provincia Int | Null Yes
localidad String | Null Yes
id_calendario Int | Null Yes
tarjetazk String | Null Yes
fecha_venc DateTime | Null Yes
id_sector_por_empresa Int | Null Yes
remoto_password String | Null Yes
envio_tarde Int No
ultima_fecha_envio_tarde DateTime | Null Yes
email_trabajo String | Null Yes
cuil String | Null Yes
pass_myweb String | Null Yes
modulos_habilitados String | Null Yes
IDPHONE String | Null Yes
ES_VISITA Int | Null Yes
V_EMPRESA_ORIGEN String | Null Yes
V_EMPLEADO_VISITA Int | Null Yes
V_PERTENENCIAS String | Null Yes
V_NRO_ART String | Null Yes
V_MOTIVO_VISITA String | Null Yes
V_VENCIDO Int | Null Yes
FECHA_NACIMIENTO DateTime | Null Yes
PUESTO_TRABAJO String | Null Yes

personaUpdateManyMutationInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
nombre String | StringFieldUpdateOperationsInput No
apellido String | StringFieldUpdateOperationsInput No
alta DateTime | DateTimeFieldUpdateOperationsInput No
id_tarjeta Int | NullableIntFieldUpdateOperationsInput | Null Yes
legajo String | NullableStringFieldUpdateOperationsInput | Null Yes
preciohora Decimal | DecimalFieldUpdateOperationsInput No
extras Int | IntFieldUpdateOperationsInput No
id_bioadmin Int | NullableIntFieldUpdateOperationsInput | Null Yes
imagen Bytes | NullableBytesFieldUpdateOperationsInput | Null Yes
inc_reportes Int | NullableIntFieldUpdateOperationsInput | Null Yes
eliminado DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
fecha_ingreso DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
contrasena String | NullableStringFieldUpdateOperationsInput | Null Yes
rol Int | IntFieldUpdateOperationsInput No
direccion String | NullableStringFieldUpdateOperationsInput | Null Yes
dni String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
cel String | NullableStringFieldUpdateOperationsInput | Null Yes
tel String | NullableStringFieldUpdateOperationsInput | Null Yes
cp String | NullableStringFieldUpdateOperationsInput | Null Yes
vehiculo String | NullableStringFieldUpdateOperationsInput | Null Yes
patente String | NullableStringFieldUpdateOperationsInput | Null Yes
id_provincia Int | NullableIntFieldUpdateOperationsInput | Null Yes
localidad String | NullableStringFieldUpdateOperationsInput | Null Yes
id_calendario Int | NullableIntFieldUpdateOperationsInput | Null Yes
tarjetazk String | NullableStringFieldUpdateOperationsInput | Null Yes
fecha_venc DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
id_sector_por_empresa Int | NullableIntFieldUpdateOperationsInput | Null Yes
remoto_password String | NullableStringFieldUpdateOperationsInput | Null Yes
envio_tarde Int | IntFieldUpdateOperationsInput No
ultima_fecha_envio_tarde DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
email_trabajo String | NullableStringFieldUpdateOperationsInput | Null Yes
cuil String | NullableStringFieldUpdateOperationsInput | Null Yes
pass_myweb String | NullableStringFieldUpdateOperationsInput | Null Yes
modulos_habilitados String | NullableStringFieldUpdateOperationsInput | Null Yes
IDPHONE String | NullableStringFieldUpdateOperationsInput | Null Yes
ES_VISITA Int | NullableIntFieldUpdateOperationsInput | Null Yes
V_EMPRESA_ORIGEN String | NullableStringFieldUpdateOperationsInput | Null Yes
V_EMPLEADO_VISITA Int | NullableIntFieldUpdateOperationsInput | Null Yes
V_PERTENENCIAS String | NullableStringFieldUpdateOperationsInput | Null Yes
V_NRO_ART String | NullableStringFieldUpdateOperationsInput | Null Yes
V_MOTIVO_VISITA String | NullableStringFieldUpdateOperationsInput | Null Yes
V_VENCIDO Int | NullableIntFieldUpdateOperationsInput | Null Yes
FECHA_NACIMIENTO DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
PUESTO_TRABAJO String | NullableStringFieldUpdateOperationsInput | Null Yes

personaUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
nombre String | StringFieldUpdateOperationsInput No
apellido String | StringFieldUpdateOperationsInput No
alta DateTime | DateTimeFieldUpdateOperationsInput No
id_tarjeta Int | NullableIntFieldUpdateOperationsInput | Null Yes
legajo String | NullableStringFieldUpdateOperationsInput | Null Yes
preciohora Decimal | DecimalFieldUpdateOperationsInput No
extras Int | IntFieldUpdateOperationsInput No
id_bioadmin Int | NullableIntFieldUpdateOperationsInput | Null Yes
imagen Bytes | NullableBytesFieldUpdateOperationsInput | Null Yes
inc_reportes Int | NullableIntFieldUpdateOperationsInput | Null Yes
eliminado DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
fecha_ingreso DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
contrasena String | NullableStringFieldUpdateOperationsInput | Null Yes
rol Int | IntFieldUpdateOperationsInput No
direccion String | NullableStringFieldUpdateOperationsInput | Null Yes
dni String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
cel String | NullableStringFieldUpdateOperationsInput | Null Yes
tel String | NullableStringFieldUpdateOperationsInput | Null Yes
cp String | NullableStringFieldUpdateOperationsInput | Null Yes
vehiculo String | NullableStringFieldUpdateOperationsInput | Null Yes
patente String | NullableStringFieldUpdateOperationsInput | Null Yes
id_provincia Int | NullableIntFieldUpdateOperationsInput | Null Yes
localidad String | NullableStringFieldUpdateOperationsInput | Null Yes
id_calendario Int | NullableIntFieldUpdateOperationsInput | Null Yes
tarjetazk String | NullableStringFieldUpdateOperationsInput | Null Yes
fecha_venc DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
id_sector_por_empresa Int | NullableIntFieldUpdateOperationsInput | Null Yes
remoto_password String | NullableStringFieldUpdateOperationsInput | Null Yes
envio_tarde Int | IntFieldUpdateOperationsInput No
ultima_fecha_envio_tarde DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
email_trabajo String | NullableStringFieldUpdateOperationsInput | Null Yes
cuil String | NullableStringFieldUpdateOperationsInput | Null Yes
pass_myweb String | NullableStringFieldUpdateOperationsInput | Null Yes
modulos_habilitados String | NullableStringFieldUpdateOperationsInput | Null Yes
IDPHONE String | NullableStringFieldUpdateOperationsInput | Null Yes
ES_VISITA Int | NullableIntFieldUpdateOperationsInput | Null Yes
V_EMPRESA_ORIGEN String | NullableStringFieldUpdateOperationsInput | Null Yes
V_EMPLEADO_VISITA Int | NullableIntFieldUpdateOperationsInput | Null Yes
V_PERTENENCIAS String | NullableStringFieldUpdateOperationsInput | Null Yes
V_NRO_ART String | NullableStringFieldUpdateOperationsInput | Null Yes
V_MOTIVO_VISITA String | NullableStringFieldUpdateOperationsInput | Null Yes
V_VENCIDO Int | NullableIntFieldUpdateOperationsInput | Null Yes
FECHA_NACIMIENTO DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
PUESTO_TRABAJO String | NullableStringFieldUpdateOperationsInput | Null Yes

premioCreateInput

Name Type Nullable
nombre String | Null Yes
descripcion String | Null Yes
img String | Null Yes
estado Int | Null Yes
f_premio DateTime | Null Yes
f_proceso DateTime | Null Yes
tipo String | Null Yes
mes_cumplido Int | Null Yes

premioUncheckedCreateInput

Name Type Nullable
idPremio Int No
nombre String | Null Yes
descripcion String | Null Yes
img String | Null Yes
estado Int | Null Yes
f_premio DateTime | Null Yes
f_proceso DateTime | Null Yes
tipo String | Null Yes
mes_cumplido Int | Null Yes

premioUpdateInput

Name Type Nullable
nombre String | NullableStringFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
img String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
f_premio DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
f_proceso DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
tipo String | NullableStringFieldUpdateOperationsInput | Null Yes
mes_cumplido Int | NullableIntFieldUpdateOperationsInput | Null Yes

premioUncheckedUpdateInput

Name Type Nullable
idPremio Int | IntFieldUpdateOperationsInput No
nombre String | NullableStringFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
img String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
f_premio DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
f_proceso DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
tipo String | NullableStringFieldUpdateOperationsInput | Null Yes
mes_cumplido Int | NullableIntFieldUpdateOperationsInput | Null Yes

premioCreateManyInput

Name Type Nullable
idPremio Int No
nombre String | Null Yes
descripcion String | Null Yes
img String | Null Yes
estado Int | Null Yes
f_premio DateTime | Null Yes
f_proceso DateTime | Null Yes
tipo String | Null Yes
mes_cumplido Int | Null Yes

premioUpdateManyMutationInput

Name Type Nullable
nombre String | NullableStringFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
img String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
f_premio DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
f_proceso DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
tipo String | NullableStringFieldUpdateOperationsInput | Null Yes
mes_cumplido Int | NullableIntFieldUpdateOperationsInput | Null Yes

premioUncheckedUpdateManyInput

Name Type Nullable
idPremio Int | IntFieldUpdateOperationsInput No
nombre String | NullableStringFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
img String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
f_premio DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
f_proceso DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
tipo String | NullableStringFieldUpdateOperationsInput | Null Yes
mes_cumplido Int | NullableIntFieldUpdateOperationsInput | Null Yes

premio_personaCreateInput

Name Type Nullable
idPremio Int No
idPersona Int No
descripcion String | Null Yes
fecha_entrega DateTime | Null Yes
tipo String | Null Yes
estado Int No
usuario Int No
fecha_registro DateTime No

premio_personaUncheckedCreateInput

Name Type Nullable
idPremioPersona Int No
idPremio Int No
idPersona Int No
descripcion String | Null Yes
fecha_entrega DateTime | Null Yes
tipo String | Null Yes
estado Int No
usuario Int No
fecha_registro DateTime No

premio_personaUpdateInput

Name Type Nullable
idPremio Int | IntFieldUpdateOperationsInput No
idPersona Int | IntFieldUpdateOperationsInput No
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
fecha_entrega DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
tipo String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Int | IntFieldUpdateOperationsInput No
usuario Int | IntFieldUpdateOperationsInput No
fecha_registro DateTime | DateTimeFieldUpdateOperationsInput No

premio_personaUncheckedUpdateInput

Name Type Nullable
idPremioPersona Int | IntFieldUpdateOperationsInput No
idPremio Int | IntFieldUpdateOperationsInput No
idPersona Int | IntFieldUpdateOperationsInput No
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
fecha_entrega DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
tipo String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Int | IntFieldUpdateOperationsInput No
usuario Int | IntFieldUpdateOperationsInput No
fecha_registro DateTime | DateTimeFieldUpdateOperationsInput No

premio_personaCreateManyInput

Name Type Nullable
idPremioPersona Int No
idPremio Int No
idPersona Int No
descripcion String | Null Yes
fecha_entrega DateTime | Null Yes
tipo String | Null Yes
estado Int No
usuario Int No
fecha_registro DateTime No

premio_personaUpdateManyMutationInput

Name Type Nullable
idPremio Int | IntFieldUpdateOperationsInput No
idPersona Int | IntFieldUpdateOperationsInput No
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
fecha_entrega DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
tipo String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Int | IntFieldUpdateOperationsInput No
usuario Int | IntFieldUpdateOperationsInput No
fecha_registro DateTime | DateTimeFieldUpdateOperationsInput No

premio_personaUncheckedUpdateManyInput

Name Type Nullable
idPremioPersona Int | IntFieldUpdateOperationsInput No
idPremio Int | IntFieldUpdateOperationsInput No
idPersona Int | IntFieldUpdateOperationsInput No
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
fecha_entrega DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
tipo String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Int | IntFieldUpdateOperationsInput No
usuario Int | IntFieldUpdateOperationsInput No
fecha_registro DateTime | DateTimeFieldUpdateOperationsInput No

salaCreateInput

Name Type Nullable
title String | Null Yes
descripcion String | Null Yes
color String | Null Yes
textColor String | Null Yes
start String | Null Yes
end String | Null Yes
estado Int | Null Yes
f_creacion DateTime | Null Yes
usuario Int | Null Yes

salaUncheckedCreateInput

Name Type Nullable
idSala Int No
title String | Null Yes
descripcion String | Null Yes
color String | Null Yes
textColor String | Null Yes
start String | Null Yes
end String | Null Yes
estado Int | Null Yes
f_creacion DateTime | Null Yes
usuario Int | Null Yes

salaUpdateInput

Name Type Nullable
title String | NullableStringFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
color String | NullableStringFieldUpdateOperationsInput | Null Yes
textColor String | NullableStringFieldUpdateOperationsInput | Null Yes
start String | NullableStringFieldUpdateOperationsInput | Null Yes
end String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
f_creacion DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes

salaUncheckedUpdateInput

Name Type Nullable
idSala Int | IntFieldUpdateOperationsInput No
title String | NullableStringFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
color String | NullableStringFieldUpdateOperationsInput | Null Yes
textColor String | NullableStringFieldUpdateOperationsInput | Null Yes
start String | NullableStringFieldUpdateOperationsInput | Null Yes
end String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
f_creacion DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes

salaCreateManyInput

Name Type Nullable
idSala Int No
title String | Null Yes
descripcion String | Null Yes
color String | Null Yes
textColor String | Null Yes
start String | Null Yes
end String | Null Yes
estado Int | Null Yes
f_creacion DateTime | Null Yes
usuario Int | Null Yes

salaUpdateManyMutationInput

Name Type Nullable
title String | NullableStringFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
color String | NullableStringFieldUpdateOperationsInput | Null Yes
textColor String | NullableStringFieldUpdateOperationsInput | Null Yes
start String | NullableStringFieldUpdateOperationsInput | Null Yes
end String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
f_creacion DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes

salaUncheckedUpdateManyInput

Name Type Nullable
idSala Int | IntFieldUpdateOperationsInput No
title String | NullableStringFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
color String | NullableStringFieldUpdateOperationsInput | Null Yes
textColor String | NullableStringFieldUpdateOperationsInput | Null Yes
start String | NullableStringFieldUpdateOperationsInput | Null Yes
end String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
f_creacion DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes

sala_copyCreateInput

Name Type Nullable
title String | Null Yes
descripcion String | Null Yes
color String | Null Yes
textColor String | Null Yes
start DateTime | Null Yes
end DateTime | Null Yes
estado Int | Null Yes
f_creacion DateTime | Null Yes
usuario Int | Null Yes

sala_copyUncheckedCreateInput

Name Type Nullable
idSala Int No
title String | Null Yes
descripcion String | Null Yes
color String | Null Yes
textColor String | Null Yes
start DateTime | Null Yes
end DateTime | Null Yes
estado Int | Null Yes
f_creacion DateTime | Null Yes
usuario Int | Null Yes

sala_copyUpdateInput

Name Type Nullable
title String | NullableStringFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
color String | NullableStringFieldUpdateOperationsInput | Null Yes
textColor String | NullableStringFieldUpdateOperationsInput | Null Yes
start DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
end DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
f_creacion DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes

sala_copyUncheckedUpdateInput

Name Type Nullable
idSala Int | IntFieldUpdateOperationsInput No
title String | NullableStringFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
color String | NullableStringFieldUpdateOperationsInput | Null Yes
textColor String | NullableStringFieldUpdateOperationsInput | Null Yes
start DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
end DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
f_creacion DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes

sala_copyCreateManyInput

Name Type Nullable
idSala Int No
title String | Null Yes
descripcion String | Null Yes
color String | Null Yes
textColor String | Null Yes
start DateTime | Null Yes
end DateTime | Null Yes
estado Int | Null Yes
f_creacion DateTime | Null Yes
usuario Int | Null Yes

sala_copyUpdateManyMutationInput

Name Type Nullable
title String | NullableStringFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
color String | NullableStringFieldUpdateOperationsInput | Null Yes
textColor String | NullableStringFieldUpdateOperationsInput | Null Yes
start DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
end DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
f_creacion DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes

sala_copyUncheckedUpdateManyInput

Name Type Nullable
idSala Int | IntFieldUpdateOperationsInput No
title String | NullableStringFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
color String | NullableStringFieldUpdateOperationsInput | Null Yes
textColor String | NullableStringFieldUpdateOperationsInput | Null Yes
start DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
end DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
f_creacion DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes

sectorCreateInput

Name Type Nullable
nombre String | Null Yes
estado Int | Null Yes

sectorUncheckedCreateInput

Name Type Nullable
idSector Int No
nombre String | Null Yes
estado Int | Null Yes

sectorUpdateInput

Name Type Nullable
nombre String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes

sectorUncheckedUpdateInput

Name Type Nullable
idSector Int | IntFieldUpdateOperationsInput No
nombre String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes

sectorCreateManyInput

Name Type Nullable
idSector Int No
nombre String | Null Yes
estado Int | Null Yes

sectorUpdateManyMutationInput

Name Type Nullable
nombre String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes

sectorUncheckedUpdateManyInput

Name Type Nullable
idSector Int | IntFieldUpdateOperationsInput No
nombre String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes

seleccion_personalCreateInput

Name Type Nullable
nombre String | Null Yes
apellido String | Null Yes
domicilio String | Null Yes
contacto String | Null Yes
fuente_reclutamiento String | Null Yes
descripcion String | Null Yes
estado Int | Null Yes
f_proceso DateTime | Null Yes
meta_estado String | Null Yes
fecha_meta_estado DateTime | Null Yes
sector Int | Null Yes

seleccion_personalUncheckedCreateInput

Name Type Nullable
idSeleccion_personal Int No
nombre String | Null Yes
apellido String | Null Yes
domicilio String | Null Yes
contacto String | Null Yes
fuente_reclutamiento String | Null Yes
descripcion String | Null Yes
estado Int | Null Yes
f_proceso DateTime | Null Yes
meta_estado String | Null Yes
fecha_meta_estado DateTime | Null Yes
sector Int | Null Yes

seleccion_personalUpdateInput

Name Type Nullable
nombre String | NullableStringFieldUpdateOperationsInput | Null Yes
apellido String | NullableStringFieldUpdateOperationsInput | Null Yes
domicilio String | NullableStringFieldUpdateOperationsInput | Null Yes
contacto String | NullableStringFieldUpdateOperationsInput | Null Yes
fuente_reclutamiento String | NullableStringFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
f_proceso DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
meta_estado String | NullableStringFieldUpdateOperationsInput | Null Yes
fecha_meta_estado DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
sector Int | NullableIntFieldUpdateOperationsInput | Null Yes

seleccion_personalUncheckedUpdateInput

Name Type Nullable
idSeleccion_personal Int | IntFieldUpdateOperationsInput No
nombre String | NullableStringFieldUpdateOperationsInput | Null Yes
apellido String | NullableStringFieldUpdateOperationsInput | Null Yes
domicilio String | NullableStringFieldUpdateOperationsInput | Null Yes
contacto String | NullableStringFieldUpdateOperationsInput | Null Yes
fuente_reclutamiento String | NullableStringFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
f_proceso DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
meta_estado String | NullableStringFieldUpdateOperationsInput | Null Yes
fecha_meta_estado DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
sector Int | NullableIntFieldUpdateOperationsInput | Null Yes

seleccion_personalCreateManyInput

Name Type Nullable
idSeleccion_personal Int No
nombre String | Null Yes
apellido String | Null Yes
domicilio String | Null Yes
contacto String | Null Yes
fuente_reclutamiento String | Null Yes
descripcion String | Null Yes
estado Int | Null Yes
f_proceso DateTime | Null Yes
meta_estado String | Null Yes
fecha_meta_estado DateTime | Null Yes
sector Int | Null Yes

seleccion_personalUpdateManyMutationInput

Name Type Nullable
nombre String | NullableStringFieldUpdateOperationsInput | Null Yes
apellido String | NullableStringFieldUpdateOperationsInput | Null Yes
domicilio String | NullableStringFieldUpdateOperationsInput | Null Yes
contacto String | NullableStringFieldUpdateOperationsInput | Null Yes
fuente_reclutamiento String | NullableStringFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
f_proceso DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
meta_estado String | NullableStringFieldUpdateOperationsInput | Null Yes
fecha_meta_estado DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
sector Int | NullableIntFieldUpdateOperationsInput | Null Yes

seleccion_personalUncheckedUpdateManyInput

Name Type Nullable
idSeleccion_personal Int | IntFieldUpdateOperationsInput No
nombre String | NullableStringFieldUpdateOperationsInput | Null Yes
apellido String | NullableStringFieldUpdateOperationsInput | Null Yes
domicilio String | NullableStringFieldUpdateOperationsInput | Null Yes
contacto String | NullableStringFieldUpdateOperationsInput | Null Yes
fuente_reclutamiento String | NullableStringFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
f_proceso DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
meta_estado String | NullableStringFieldUpdateOperationsInput | Null Yes
fecha_meta_estado DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
sector Int | NullableIntFieldUpdateOperationsInput | Null Yes

slot_testCreateInput

Name Type Nullable
tst_id Int No
tst_egm Int No
tst_srl_acept String No
tst_srl_impr String No
tst_srl_monit String No
tst_srl_bckpln String No
tst_srl_mother String No
tst_hora_fecha DateTime No

slot_testUncheckedCreateInput

Name Type Nullable
tst_id Int No
tst_egm Int No
tst_srl_acept String No
tst_srl_impr String No
tst_srl_monit String No
tst_srl_bckpln String No
tst_srl_mother String No
tst_hora_fecha DateTime No

slot_testUpdateInput

Name Type Nullable
tst_id Int | IntFieldUpdateOperationsInput No
tst_egm Int | IntFieldUpdateOperationsInput No
tst_srl_acept String | StringFieldUpdateOperationsInput No
tst_srl_impr String | StringFieldUpdateOperationsInput No
tst_srl_monit String | StringFieldUpdateOperationsInput No
tst_srl_bckpln String | StringFieldUpdateOperationsInput No
tst_srl_mother String | StringFieldUpdateOperationsInput No
tst_hora_fecha DateTime | DateTimeFieldUpdateOperationsInput No

slot_testUncheckedUpdateInput

Name Type Nullable
tst_id Int | IntFieldUpdateOperationsInput No
tst_egm Int | IntFieldUpdateOperationsInput No
tst_srl_acept String | StringFieldUpdateOperationsInput No
tst_srl_impr String | StringFieldUpdateOperationsInput No
tst_srl_monit String | StringFieldUpdateOperationsInput No
tst_srl_bckpln String | StringFieldUpdateOperationsInput No
tst_srl_mother String | StringFieldUpdateOperationsInput No
tst_hora_fecha DateTime | DateTimeFieldUpdateOperationsInput No

slot_testCreateManyInput

Name Type Nullable
tst_id Int No
tst_egm Int No
tst_srl_acept String No
tst_srl_impr String No
tst_srl_monit String No
tst_srl_bckpln String No
tst_srl_mother String No
tst_hora_fecha DateTime No

slot_testUpdateManyMutationInput

Name Type Nullable
tst_id Int | IntFieldUpdateOperationsInput No
tst_egm Int | IntFieldUpdateOperationsInput No
tst_srl_acept String | StringFieldUpdateOperationsInput No
tst_srl_impr String | StringFieldUpdateOperationsInput No
tst_srl_monit String | StringFieldUpdateOperationsInput No
tst_srl_bckpln String | StringFieldUpdateOperationsInput No
tst_srl_mother String | StringFieldUpdateOperationsInput No
tst_hora_fecha DateTime | DateTimeFieldUpdateOperationsInput No

slot_testUncheckedUpdateManyInput

Name Type Nullable
tst_id Int | IntFieldUpdateOperationsInput No
tst_egm Int | IntFieldUpdateOperationsInput No
tst_srl_acept String | StringFieldUpdateOperationsInput No
tst_srl_impr String | StringFieldUpdateOperationsInput No
tst_srl_monit String | StringFieldUpdateOperationsInput No
tst_srl_bckpln String | StringFieldUpdateOperationsInput No
tst_srl_mother String | StringFieldUpdateOperationsInput No
tst_hora_fecha DateTime | DateTimeFieldUpdateOperationsInput No

stock_bejermanCreateInput

Name Type Nullable
stkart_codgen String | Null Yes
skart_codEle1 String | Null Yes
skart_codEle2 String | Null Yes
skart_codEle3 String | Null Yes
deposito String | Null Yes
cantidad String | Null Yes
f_carga_bejerman String | Null Yes
autor String | Null Yes

stock_bejermanUncheckedCreateInput

Name Type Nullable
stkart_codgen String | Null Yes
skart_codEle1 String | Null Yes
skart_codEle2 String | Null Yes
skart_codEle3 String | Null Yes
deposito String | Null Yes
cantidad String | Null Yes
f_carga_bejerman String | Null Yes
autor String | Null Yes
id_stock_bejerman Int No

stock_bejermanUpdateInput

Name Type Nullable
stkart_codgen String | NullableStringFieldUpdateOperationsInput | Null Yes
skart_codEle1 String | NullableStringFieldUpdateOperationsInput | Null Yes
skart_codEle2 String | NullableStringFieldUpdateOperationsInput | Null Yes
skart_codEle3 String | NullableStringFieldUpdateOperationsInput | Null Yes
deposito String | NullableStringFieldUpdateOperationsInput | Null Yes
cantidad String | NullableStringFieldUpdateOperationsInput | Null Yes
f_carga_bejerman String | NullableStringFieldUpdateOperationsInput | Null Yes
autor String | NullableStringFieldUpdateOperationsInput | Null Yes

stock_bejermanUncheckedUpdateInput

Name Type Nullable
stkart_codgen String | NullableStringFieldUpdateOperationsInput | Null Yes
skart_codEle1 String | NullableStringFieldUpdateOperationsInput | Null Yes
skart_codEle2 String | NullableStringFieldUpdateOperationsInput | Null Yes
skart_codEle3 String | NullableStringFieldUpdateOperationsInput | Null Yes
deposito String | NullableStringFieldUpdateOperationsInput | Null Yes
cantidad String | NullableStringFieldUpdateOperationsInput | Null Yes
f_carga_bejerman String | NullableStringFieldUpdateOperationsInput | Null Yes
autor String | NullableStringFieldUpdateOperationsInput | Null Yes
id_stock_bejerman Int | IntFieldUpdateOperationsInput No

stock_bejermanCreateManyInput

Name Type Nullable
stkart_codgen String | Null Yes
skart_codEle1 String | Null Yes
skart_codEle2 String | Null Yes
skart_codEle3 String | Null Yes
deposito String | Null Yes
cantidad String | Null Yes
f_carga_bejerman String | Null Yes
autor String | Null Yes
id_stock_bejerman Int No

stock_bejermanUpdateManyMutationInput

Name Type Nullable
stkart_codgen String | NullableStringFieldUpdateOperationsInput | Null Yes
skart_codEle1 String | NullableStringFieldUpdateOperationsInput | Null Yes
skart_codEle2 String | NullableStringFieldUpdateOperationsInput | Null Yes
skart_codEle3 String | NullableStringFieldUpdateOperationsInput | Null Yes
deposito String | NullableStringFieldUpdateOperationsInput | Null Yes
cantidad String | NullableStringFieldUpdateOperationsInput | Null Yes
f_carga_bejerman String | NullableStringFieldUpdateOperationsInput | Null Yes
autor String | NullableStringFieldUpdateOperationsInput | Null Yes

stock_bejermanUncheckedUpdateManyInput

Name Type Nullable
stkart_codgen String | NullableStringFieldUpdateOperationsInput | Null Yes
skart_codEle1 String | NullableStringFieldUpdateOperationsInput | Null Yes
skart_codEle2 String | NullableStringFieldUpdateOperationsInput | Null Yes
skart_codEle3 String | NullableStringFieldUpdateOperationsInput | Null Yes
deposito String | NullableStringFieldUpdateOperationsInput | Null Yes
cantidad String | NullableStringFieldUpdateOperationsInput | Null Yes
f_carga_bejerman String | NullableStringFieldUpdateOperationsInput | Null Yes
autor String | NullableStringFieldUpdateOperationsInput | Null Yes
id_stock_bejerman Int | IntFieldUpdateOperationsInput No

temaCreateInput

Name Type Nullable
nombre String | Null Yes
estado Int | Null Yes

temaUncheckedCreateInput

Name Type Nullable
idTema Int No
nombre String | Null Yes
estado Int | Null Yes

temaUpdateInput

Name Type Nullable
nombre String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes

temaUncheckedUpdateInput

Name Type Nullable
idTema Int | IntFieldUpdateOperationsInput No
nombre String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes

temaCreateManyInput

Name Type Nullable
idTema Int No
nombre String | Null Yes
estado Int | Null Yes

temaUpdateManyMutationInput

Name Type Nullable
nombre String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes

temaUncheckedUpdateManyInput

Name Type Nullable
idTema Int | IntFieldUpdateOperationsInput No
nombre String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes

ticketCreateInput

Name Type Nullable
solicita Int No
idAsignado Int No
referencia Int No
descripcion String | Null Yes
prioridad String | Null Yes
estado Boolean | Null Yes
f_solicitud DateTime | Null Yes
f_respuesta DateTime | Null Yes
modulo String | Null Yes
submodulo String | Null Yes
categoria String | Null Yes
tipo String | Null Yes
f_cierre DateTime No
f_proceso DateTime No
f_atencion DateTime No
sector Int | Null Yes

ticketUncheckedCreateInput

Name Type Nullable
idTicket Int No
solicita Int No
idAsignado Int No
referencia Int No
descripcion String | Null Yes
prioridad String | Null Yes
estado Boolean | Null Yes
f_solicitud DateTime | Null Yes
f_respuesta DateTime | Null Yes
modulo String | Null Yes
submodulo String | Null Yes
categoria String | Null Yes
tipo String | Null Yes
f_cierre DateTime No
f_proceso DateTime No
f_atencion DateTime No
sector Int | Null Yes

ticketUpdateInput

Name Type Nullable
solicita Int | IntFieldUpdateOperationsInput No
idAsignado Int | IntFieldUpdateOperationsInput No
referencia Int | IntFieldUpdateOperationsInput No
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
prioridad String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
f_solicitud DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
f_respuesta DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
modulo String | NullableStringFieldUpdateOperationsInput | Null Yes
submodulo String | NullableStringFieldUpdateOperationsInput | Null Yes
categoria String | NullableStringFieldUpdateOperationsInput | Null Yes
tipo String | NullableStringFieldUpdateOperationsInput | Null Yes
f_cierre DateTime | DateTimeFieldUpdateOperationsInput No
f_proceso DateTime | DateTimeFieldUpdateOperationsInput No
f_atencion DateTime | DateTimeFieldUpdateOperationsInput No
sector Int | NullableIntFieldUpdateOperationsInput | Null Yes

ticketUncheckedUpdateInput

Name Type Nullable
idTicket Int | IntFieldUpdateOperationsInput No
solicita Int | IntFieldUpdateOperationsInput No
idAsignado Int | IntFieldUpdateOperationsInput No
referencia Int | IntFieldUpdateOperationsInput No
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
prioridad String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
f_solicitud DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
f_respuesta DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
modulo String | NullableStringFieldUpdateOperationsInput | Null Yes
submodulo String | NullableStringFieldUpdateOperationsInput | Null Yes
categoria String | NullableStringFieldUpdateOperationsInput | Null Yes
tipo String | NullableStringFieldUpdateOperationsInput | Null Yes
f_cierre DateTime | DateTimeFieldUpdateOperationsInput No
f_proceso DateTime | DateTimeFieldUpdateOperationsInput No
f_atencion DateTime | DateTimeFieldUpdateOperationsInput No
sector Int | NullableIntFieldUpdateOperationsInput | Null Yes

ticketCreateManyInput

Name Type Nullable
idTicket Int No
solicita Int No
idAsignado Int No
referencia Int No
descripcion String | Null Yes
prioridad String | Null Yes
estado Boolean | Null Yes
f_solicitud DateTime | Null Yes
f_respuesta DateTime | Null Yes
modulo String | Null Yes
submodulo String | Null Yes
categoria String | Null Yes
tipo String | Null Yes
f_cierre DateTime No
f_proceso DateTime No
f_atencion DateTime No
sector Int | Null Yes

ticketUpdateManyMutationInput

Name Type Nullable
solicita Int | IntFieldUpdateOperationsInput No
idAsignado Int | IntFieldUpdateOperationsInput No
referencia Int | IntFieldUpdateOperationsInput No
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
prioridad String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
f_solicitud DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
f_respuesta DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
modulo String | NullableStringFieldUpdateOperationsInput | Null Yes
submodulo String | NullableStringFieldUpdateOperationsInput | Null Yes
categoria String | NullableStringFieldUpdateOperationsInput | Null Yes
tipo String | NullableStringFieldUpdateOperationsInput | Null Yes
f_cierre DateTime | DateTimeFieldUpdateOperationsInput No
f_proceso DateTime | DateTimeFieldUpdateOperationsInput No
f_atencion DateTime | DateTimeFieldUpdateOperationsInput No
sector Int | NullableIntFieldUpdateOperationsInput | Null Yes

ticketUncheckedUpdateManyInput

Name Type Nullable
idTicket Int | IntFieldUpdateOperationsInput No
solicita Int | IntFieldUpdateOperationsInput No
idAsignado Int | IntFieldUpdateOperationsInput No
referencia Int | IntFieldUpdateOperationsInput No
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
prioridad String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
f_solicitud DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
f_respuesta DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
modulo String | NullableStringFieldUpdateOperationsInput | Null Yes
submodulo String | NullableStringFieldUpdateOperationsInput | Null Yes
categoria String | NullableStringFieldUpdateOperationsInput | Null Yes
tipo String | NullableStringFieldUpdateOperationsInput | Null Yes
f_cierre DateTime | DateTimeFieldUpdateOperationsInput No
f_proceso DateTime | DateTimeFieldUpdateOperationsInput No
f_atencion DateTime | DateTimeFieldUpdateOperationsInput No
sector Int | NullableIntFieldUpdateOperationsInput | Null Yes

tituloCreateInput

Name Type Nullable
nombre String | Null Yes
estado Int | Null Yes

tituloUncheckedCreateInput

Name Type Nullable
idTitulo Int No
nombre String | Null Yes
estado Int | Null Yes

tituloUpdateInput

Name Type Nullable
nombre String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes

tituloUncheckedUpdateInput

Name Type Nullable
idTitulo Int | IntFieldUpdateOperationsInput No
nombre String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes

tituloCreateManyInput

Name Type Nullable
idTitulo Int No
nombre String | Null Yes
estado Int | Null Yes

tituloUpdateManyMutationInput

Name Type Nullable
nombre String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes

tituloUncheckedUpdateManyInput

Name Type Nullable
idTitulo Int | IntFieldUpdateOperationsInput No
nombre String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes

uniformeCreateInput

Name Type Nullable
prenda String | Null Yes
tipo_prenda String | Null Yes
talle String | Null Yes
cantidad Int | Null Yes
estado Int | Null Yes

uniformeUncheckedCreateInput

Name Type Nullable
idUniforme Int No
prenda String | Null Yes
tipo_prenda String | Null Yes
talle String | Null Yes
cantidad Int | Null Yes
estado Int | Null Yes

uniformeUpdateInput

Name Type Nullable
prenda String | NullableStringFieldUpdateOperationsInput | Null Yes
tipo_prenda String | NullableStringFieldUpdateOperationsInput | Null Yes
talle String | NullableStringFieldUpdateOperationsInput | Null Yes
cantidad Int | NullableIntFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes

uniformeUncheckedUpdateInput

Name Type Nullable
idUniforme Int | IntFieldUpdateOperationsInput No
prenda String | NullableStringFieldUpdateOperationsInput | Null Yes
tipo_prenda String | NullableStringFieldUpdateOperationsInput | Null Yes
talle String | NullableStringFieldUpdateOperationsInput | Null Yes
cantidad Int | NullableIntFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes

uniformeCreateManyInput

Name Type Nullable
idUniforme Int No
prenda String | Null Yes
tipo_prenda String | Null Yes
talle String | Null Yes
cantidad Int | Null Yes
estado Int | Null Yes

uniformeUpdateManyMutationInput

Name Type Nullable
prenda String | NullableStringFieldUpdateOperationsInput | Null Yes
tipo_prenda String | NullableStringFieldUpdateOperationsInput | Null Yes
talle String | NullableStringFieldUpdateOperationsInput | Null Yes
cantidad Int | NullableIntFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes

uniformeUncheckedUpdateManyInput

Name Type Nullable
idUniforme Int | IntFieldUpdateOperationsInput No
prenda String | NullableStringFieldUpdateOperationsInput | Null Yes
tipo_prenda String | NullableStringFieldUpdateOperationsInput | Null Yes
talle String | NullableStringFieldUpdateOperationsInput | Null Yes
cantidad Int | NullableIntFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes

uniforme_has_personaCreateInput

Name Type Nullable
idUniforme String No
idPersona Int No
f_proceso DateTime | Null Yes
detalle String | Null Yes
descripcion String | Null Yes
usuario Int | Null Yes
estado Int | Null Yes

uniforme_has_personaUncheckedCreateInput

Name Type Nullable
idUniforme_has_persona Int No
idUniforme String No
idPersona Int No
f_proceso DateTime | Null Yes
detalle String | Null Yes
descripcion String | Null Yes
usuario Int | Null Yes
estado Int | Null Yes

uniforme_has_personaUpdateInput

Name Type Nullable
idUniforme String | StringFieldUpdateOperationsInput No
idPersona Int | IntFieldUpdateOperationsInput No
f_proceso DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
detalle String | NullableStringFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes

uniforme_has_personaUncheckedUpdateInput

Name Type Nullable
idUniforme_has_persona Int | IntFieldUpdateOperationsInput No
idUniforme String | StringFieldUpdateOperationsInput No
idPersona Int | IntFieldUpdateOperationsInput No
f_proceso DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
detalle String | NullableStringFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes

uniforme_has_personaCreateManyInput

Name Type Nullable
idUniforme_has_persona Int No
idUniforme String No
idPersona Int No
f_proceso DateTime | Null Yes
detalle String | Null Yes
descripcion String | Null Yes
usuario Int | Null Yes
estado Int | Null Yes

uniforme_has_personaUpdateManyMutationInput

Name Type Nullable
idUniforme String | StringFieldUpdateOperationsInput No
idPersona Int | IntFieldUpdateOperationsInput No
f_proceso DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
detalle String | NullableStringFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes

uniforme_has_personaUncheckedUpdateManyInput

Name Type Nullable
idUniforme_has_persona Int | IntFieldUpdateOperationsInput No
idUniforme String | StringFieldUpdateOperationsInput No
idPersona Int | IntFieldUpdateOperationsInput No
f_proceso DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
detalle String | NullableStringFieldUpdateOperationsInput | Null Yes
descripcion String | NullableStringFieldUpdateOperationsInput | Null Yes
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes

usuariosCreateInput

Name Type Nullable
nombre String No
usr String No
email String No
clave String No
celular String | Null Yes
estado Boolean No
permisos_id Int No
fecha_registro DateTime No
legajo String | Null Yes

usuariosUncheckedCreateInput

Name Type Nullable
idUsuarios Int No
nombre String No
usr String No
email String No
clave String No
celular String | Null Yes
estado Boolean No
permisos_id Int No
fecha_registro DateTime No
legajo String | Null Yes

usuariosUpdateInput

Name Type Nullable
nombre String | StringFieldUpdateOperationsInput No
usr String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
clave String | StringFieldUpdateOperationsInput No
celular String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Boolean | BoolFieldUpdateOperationsInput No
permisos_id Int | IntFieldUpdateOperationsInput No
fecha_registro DateTime | DateTimeFieldUpdateOperationsInput No
legajo String | NullableStringFieldUpdateOperationsInput | Null Yes

usuariosUncheckedUpdateInput

Name Type Nullable
idUsuarios Int | IntFieldUpdateOperationsInput No
nombre String | StringFieldUpdateOperationsInput No
usr String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
clave String | StringFieldUpdateOperationsInput No
celular String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Boolean | BoolFieldUpdateOperationsInput No
permisos_id Int | IntFieldUpdateOperationsInput No
fecha_registro DateTime | DateTimeFieldUpdateOperationsInput No
legajo String | NullableStringFieldUpdateOperationsInput | Null Yes

usuariosCreateManyInput

Name Type Nullable
idUsuarios Int No
nombre String No
usr String No
email String No
clave String No
celular String | Null Yes
estado Boolean No
permisos_id Int No
fecha_registro DateTime No
legajo String | Null Yes

usuariosUpdateManyMutationInput

Name Type Nullable
nombre String | StringFieldUpdateOperationsInput No
usr String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
clave String | StringFieldUpdateOperationsInput No
celular String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Boolean | BoolFieldUpdateOperationsInput No
permisos_id Int | IntFieldUpdateOperationsInput No
fecha_registro DateTime | DateTimeFieldUpdateOperationsInput No
legajo String | NullableStringFieldUpdateOperationsInput | Null Yes

usuariosUncheckedUpdateManyInput

Name Type Nullable
idUsuarios Int | IntFieldUpdateOperationsInput No
nombre String | StringFieldUpdateOperationsInput No
usr String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
clave String | StringFieldUpdateOperationsInput No
celular String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Boolean | BoolFieldUpdateOperationsInput No
permisos_id Int | IntFieldUpdateOperationsInput No
fecha_registro DateTime | DateTimeFieldUpdateOperationsInput No
legajo String | NullableStringFieldUpdateOperationsInput | Null Yes

vacuna_personaCreateInput

Name Type Nullable
idPersona String No
tipo String | Null Yes
dosis String | Null Yes
estado Int | Null Yes
marca String | Null Yes
fecha_vacuna DateTime | Null Yes
fecha_registro DateTime | Null Yes

vacuna_personaUncheckedCreateInput

Name Type Nullable
idVacunaPersona Int No
idPersona String No
tipo String | Null Yes
dosis String | Null Yes
estado Int | Null Yes
marca String | Null Yes
fecha_vacuna DateTime | Null Yes
fecha_registro DateTime | Null Yes

vacuna_personaUpdateInput

Name Type Nullable
idPersona String | StringFieldUpdateOperationsInput No
tipo String | NullableStringFieldUpdateOperationsInput | Null Yes
dosis String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
marca String | NullableStringFieldUpdateOperationsInput | Null Yes
fecha_vacuna DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
fecha_registro DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

vacuna_personaUncheckedUpdateInput

Name Type Nullable
idVacunaPersona Int | IntFieldUpdateOperationsInput No
idPersona String | StringFieldUpdateOperationsInput No
tipo String | NullableStringFieldUpdateOperationsInput | Null Yes
dosis String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
marca String | NullableStringFieldUpdateOperationsInput | Null Yes
fecha_vacuna DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
fecha_registro DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

vacuna_personaCreateManyInput

Name Type Nullable
idVacunaPersona Int No
idPersona String No
tipo String | Null Yes
dosis String | Null Yes
estado Int | Null Yes
marca String | Null Yes
fecha_vacuna DateTime | Null Yes
fecha_registro DateTime | Null Yes

vacuna_personaUpdateManyMutationInput

Name Type Nullable
idPersona String | StringFieldUpdateOperationsInput No
tipo String | NullableStringFieldUpdateOperationsInput | Null Yes
dosis String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
marca String | NullableStringFieldUpdateOperationsInput | Null Yes
fecha_vacuna DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
fecha_registro DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

vacuna_personaUncheckedUpdateManyInput

Name Type Nullable
idVacunaPersona Int | IntFieldUpdateOperationsInput No
idPersona String | StringFieldUpdateOperationsInput No
tipo String | NullableStringFieldUpdateOperationsInput | Null Yes
dosis String | NullableStringFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
marca String | NullableStringFieldUpdateOperationsInput | Null Yes
fecha_vacuna DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
fecha_registro DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

valormenuCreateInput

Name Type Nullable
importe_externo Decimal | Null Yes
f_registro DateTime | Null Yes
usuario Int | Null Yes
estado Int | Null Yes
importe_interno Decimal | Null Yes

valormenuUncheckedCreateInput

Name Type Nullable
idValorMenu Int No
importe_externo Decimal | Null Yes
f_registro DateTime | Null Yes
usuario Int | Null Yes
estado Int | Null Yes
importe_interno Decimal | Null Yes

valormenuUpdateInput

Name Type Nullable
importe_externo Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
f_registro DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
importe_interno Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes

valormenuUncheckedUpdateInput

Name Type Nullable
idValorMenu Int | IntFieldUpdateOperationsInput No
importe_externo Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
f_registro DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
importe_interno Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes

valormenuCreateManyInput

Name Type Nullable
idValorMenu Int No
importe_externo Decimal | Null Yes
f_registro DateTime | Null Yes
usuario Int | Null Yes
estado Int | Null Yes
importe_interno Decimal | Null Yes

valormenuUpdateManyMutationInput

Name Type Nullable
importe_externo Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
f_registro DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
importe_interno Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes

valormenuUncheckedUpdateManyInput

Name Type Nullable
idValorMenu Int | IntFieldUpdateOperationsInput No
importe_externo Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
f_registro DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
usuario Int | NullableIntFieldUpdateOperationsInput | Null Yes
estado Int | NullableIntFieldUpdateOperationsInput | Null Yes
importe_interno Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes

IntFilter

Name Type Nullable
equals Int No
in Int No
notIn Int No
lt Int No
lte Int No
gt Int No
gte Int No
not Int | NestedIntFilter No

StringNullableFilter

Name Type Nullable
equals String | Null Yes
in String | Null Yes
notIn String | Null Yes
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
not String | NestedStringNullableFilter | Null Yes

articulo_deposito_importacionCountOrderByAggregateInput

Name Type Nullable
id_articulo_deposito_importacion SortOrder No
cod_deposito SortOrder No

articulo_deposito_importacionAvgOrderByAggregateInput

Name Type Nullable
id_articulo_deposito_importacion SortOrder No

articulo_deposito_importacionMaxOrderByAggregateInput

Name Type Nullable
id_articulo_deposito_importacion SortOrder No
cod_deposito SortOrder No

articulo_deposito_importacionMinOrderByAggregateInput

Name Type Nullable
id_articulo_deposito_importacion SortOrder No
cod_deposito SortOrder No

articulo_deposito_importacionSumOrderByAggregateInput

Name Type Nullable
id_articulo_deposito_importacion SortOrder No

IntWithAggregatesFilter

Name Type Nullable
equals Int No
in Int No
notIn Int No
lt Int No
lte Int No
gt Int No
gte Int No
not Int | NestedIntWithAggregatesFilter No
_count NestedIntFilter No
_avg NestedFloatFilter No
_sum NestedIntFilter No
_min NestedIntFilter No
_max NestedIntFilter No

StringNullableWithAggregatesFilter

Name Type Nullable
equals String | Null Yes
in String | Null Yes
notIn String | Null Yes
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
not String | NestedStringNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedStringNullableFilter No
_max NestedStringNullableFilter No

IntNullableFilter

Name Type Nullable
equals Int | Null Yes
in Int | Null Yes
notIn Int | Null Yes
lt Int No
lte Int No
gt Int No
gte Int No
not Int | NestedIntNullableFilter | Null Yes

DecimalNullableFilter

Name Type Nullable
equals Decimal | Null Yes
in Decimal[] | Null Yes
notIn Decimal[] | Null Yes
lt Decimal No
lte Decimal No
gt Decimal No
gte Decimal No
not Decimal | NestedDecimalNullableFilter | Null Yes

BoolNullableFilter

Name Type Nullable
equals Boolean | Null Yes
not Boolean | NestedBoolNullableFilter | Null Yes

articulosCountOrderByAggregateInput

Name Type Nullable
idArticulo SortOrder No
nombre SortOrder No
categoria SortOrder No
stock SortOrder No
estado SortOrder No
precioCompra SortOrder No
precioVenta SortOrder No
stockMinimo SortOrder No
entrada SortOrder No
salida SortOrder No
tipo_modelo SortOrder No
descripcion SortOrder No
serie SortOrder No
codigo SortOrder No

articulosAvgOrderByAggregateInput

Name Type Nullable
idArticulo SortOrder No
categoria SortOrder No
stock SortOrder No
estado SortOrder No
precioCompra SortOrder No
precioVenta SortOrder No
stockMinimo SortOrder No

articulosMaxOrderByAggregateInput

Name Type Nullable
idArticulo SortOrder No
nombre SortOrder No
categoria SortOrder No
stock SortOrder No
estado SortOrder No
precioCompra SortOrder No
precioVenta SortOrder No
stockMinimo SortOrder No
entrada SortOrder No
salida SortOrder No
tipo_modelo SortOrder No
descripcion SortOrder No
serie SortOrder No
codigo SortOrder No

articulosMinOrderByAggregateInput

Name Type Nullable
idArticulo SortOrder No
nombre SortOrder No
categoria SortOrder No
stock SortOrder No
estado SortOrder No
precioCompra SortOrder No
precioVenta SortOrder No
stockMinimo SortOrder No
entrada SortOrder No
salida SortOrder No
tipo_modelo SortOrder No
descripcion SortOrder No
serie SortOrder No
codigo SortOrder No

articulosSumOrderByAggregateInput

Name Type Nullable
idArticulo SortOrder No
categoria SortOrder No
stock SortOrder No
estado SortOrder No
precioCompra SortOrder No
precioVenta SortOrder No
stockMinimo SortOrder No

IntNullableWithAggregatesFilter

Name Type Nullable
equals Int | Null Yes
in Int | Null Yes
notIn Int | Null Yes
lt Int No
lte Int No
gt Int No
gte Int No
not Int | NestedIntNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_avg NestedFloatNullableFilter No
_sum NestedIntNullableFilter No
_min NestedIntNullableFilter No
_max NestedIntNullableFilter No

DecimalNullableWithAggregatesFilter

Name Type Nullable
equals Decimal | Null Yes
in Decimal[] | Null Yes
notIn Decimal[] | Null Yes
lt Decimal No
lte Decimal No
gt Decimal No
gte Decimal No
not Decimal | NestedDecimalNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_avg NestedDecimalNullableFilter No
_sum NestedDecimalNullableFilter No
_min NestedDecimalNullableFilter No
_max NestedDecimalNullableFilter No

BoolNullableWithAggregatesFilter

Name Type Nullable
equals Boolean | Null Yes
not Boolean | NestedBoolNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedBoolNullableFilter No
_max NestedBoolNullableFilter No

DateTimeNullableFilter

Name Type Nullable
equals DateTime | Null Yes
in DateTime | Null Yes
notIn DateTime | Null Yes
lt DateTime No
lte DateTime No
gt DateTime No
gte DateTime No
not DateTime | NestedDateTimeNullableFilter | Null Yes

articulos_laboratorioCountOrderByAggregateInput

Name Type Nullable
idArticuloLaboratorio SortOrder No
articulo SortOrder No
maquina SortOrder No
cantidad SortOrder No
usuario SortOrder No
fecha_hora SortOrder No
asignado SortOrder No
estado SortOrder No
reparados SortOrder No

articulos_laboratorioAvgOrderByAggregateInput

Name Type Nullable
idArticuloLaboratorio SortOrder No
articulo SortOrder No
maquina SortOrder No
cantidad SortOrder No
usuario SortOrder No
asignado SortOrder No
estado SortOrder No
reparados SortOrder No

articulos_laboratorioMaxOrderByAggregateInput

Name Type Nullable
idArticuloLaboratorio SortOrder No
articulo SortOrder No
maquina SortOrder No
cantidad SortOrder No
usuario SortOrder No
fecha_hora SortOrder No
asignado SortOrder No
estado SortOrder No
reparados SortOrder No

articulos_laboratorioMinOrderByAggregateInput

Name Type Nullable
idArticuloLaboratorio SortOrder No
articulo SortOrder No
maquina SortOrder No
cantidad SortOrder No
usuario SortOrder No
fecha_hora SortOrder No
asignado SortOrder No
estado SortOrder No
reparados SortOrder No

articulos_laboratorioSumOrderByAggregateInput

Name Type Nullable
idArticuloLaboratorio SortOrder No
articulo SortOrder No
maquina SortOrder No
cantidad SortOrder No
usuario SortOrder No
asignado SortOrder No
estado SortOrder No
reparados SortOrder No

DateTimeNullableWithAggregatesFilter

Name Type Nullable
equals DateTime | Null Yes
in DateTime | Null Yes
notIn DateTime | Null Yes
lt DateTime No
lte DateTime No
gt DateTime No
gte DateTime No
not DateTime | NestedDateTimeNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedDateTimeNullableFilter No
_max NestedDateTimeNullableFilter No

articulos_maquinasCountOrderByAggregateInput

Name Type Nullable
idArticuloMaquina SortOrder No
maquina SortOrder No
articulo SortOrder No
cantidad SortOrder No
usuario SortOrder No
fecha_hora SortOrder No
estado SortOrder No
fecha_salida SortOrder No
usuario_salida SortOrder No

articulos_maquinasAvgOrderByAggregateInput

Name Type Nullable
idArticuloMaquina SortOrder No
maquina SortOrder No
articulo SortOrder No
cantidad SortOrder No
usuario SortOrder No
estado SortOrder No
usuario_salida SortOrder No

articulos_maquinasMaxOrderByAggregateInput

Name Type Nullable
idArticuloMaquina SortOrder No
maquina SortOrder No
articulo SortOrder No
cantidad SortOrder No
usuario SortOrder No
fecha_hora SortOrder No
estado SortOrder No
fecha_salida SortOrder No
usuario_salida SortOrder No

articulos_maquinasMinOrderByAggregateInput

Name Type Nullable
idArticuloMaquina SortOrder No
maquina SortOrder No
articulo SortOrder No
cantidad SortOrder No
usuario SortOrder No
fecha_hora SortOrder No
estado SortOrder No
fecha_salida SortOrder No
usuario_salida SortOrder No

articulos_maquinasSumOrderByAggregateInput

Name Type Nullable
idArticuloMaquina SortOrder No
maquina SortOrder No
articulo SortOrder No
cantidad SortOrder No
usuario SortOrder No
estado SortOrder No
usuario_salida SortOrder No

StringFilter

Name Type Nullable
equals String No
in String No
notIn String No
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
not String | NestedStringFilter No

articulos_saveCountOrderByAggregateInput

Name Type Nullable
nombre SortOrder No
tipo_modelo SortOrder No

articulos_saveMaxOrderByAggregateInput

Name Type Nullable
nombre SortOrder No
tipo_modelo SortOrder No

articulos_saveMinOrderByAggregateInput

Name Type Nullable
nombre SortOrder No
tipo_modelo SortOrder No

StringWithAggregatesFilter

Name Type Nullable
equals String No
in String No
notIn String No
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
not String | NestedStringWithAggregatesFilter No
_count NestedIntFilter No
_min NestedStringFilter No
_max NestedStringFilter No

calendariomenuCountOrderByAggregateInput

Name Type Nullable
idCalendarioMenu SortOrder No
legajo SortOrder No
persona_str SortOrder No
title SortOrder No
descripcion SortOrder No
start SortOrder No
color SortOrder No
textColor SortOrder No
end SortOrder No
idMenu SortOrder No
estado SortOrder No
f_registro SortOrder No
idMenuBingo SortOrder No
turno SortOrder No

calendariomenuAvgOrderByAggregateInput

Name Type Nullable
idCalendarioMenu SortOrder No
idMenu SortOrder No
estado SortOrder No
idMenuBingo SortOrder No

calendariomenuMaxOrderByAggregateInput

Name Type Nullable
idCalendarioMenu SortOrder No
legajo SortOrder No
persona_str SortOrder No
title SortOrder No
descripcion SortOrder No
start SortOrder No
color SortOrder No
textColor SortOrder No
end SortOrder No
idMenu SortOrder No
estado SortOrder No
f_registro SortOrder No
idMenuBingo SortOrder No
turno SortOrder No

calendariomenuMinOrderByAggregateInput

Name Type Nullable
idCalendarioMenu SortOrder No
legajo SortOrder No
persona_str SortOrder No
title SortOrder No
descripcion SortOrder No
start SortOrder No
color SortOrder No
textColor SortOrder No
end SortOrder No
idMenu SortOrder No
estado SortOrder No
f_registro SortOrder No
idMenuBingo SortOrder No
turno SortOrder No

calendariomenuSumOrderByAggregateInput

Name Type Nullable
idCalendarioMenu SortOrder No
idMenu SortOrder No
estado SortOrder No
idMenuBingo SortOrder No

calendariomenu_oldCountOrderByAggregateInput

Name Type Nullable
idCalendarioMenu SortOrder No
legajo SortOrder No
title SortOrder No
descripcion SortOrder No
start SortOrder No
color SortOrder No
textColor SortOrder No
end SortOrder No
idMenu SortOrder No
estado SortOrder No
f_registro SortOrder No

calendariomenu_oldAvgOrderByAggregateInput

Name Type Nullable
idCalendarioMenu SortOrder No
idMenu SortOrder No
estado SortOrder No

calendariomenu_oldMaxOrderByAggregateInput

Name Type Nullable
idCalendarioMenu SortOrder No
legajo SortOrder No
title SortOrder No
descripcion SortOrder No
start SortOrder No
color SortOrder No
textColor SortOrder No
end SortOrder No
idMenu SortOrder No
estado SortOrder No
f_registro SortOrder No

calendariomenu_oldMinOrderByAggregateInput

Name Type Nullable
idCalendarioMenu SortOrder No
legajo SortOrder No
title SortOrder No
descripcion SortOrder No
start SortOrder No
color SortOrder No
textColor SortOrder No
end SortOrder No
idMenu SortOrder No
estado SortOrder No
f_registro SortOrder No

calendariomenu_oldSumOrderByAggregateInput

Name Type Nullable
idCalendarioMenu SortOrder No
idMenu SortOrder No
estado SortOrder No

capacitacionCountOrderByAggregateInput

Name Type Nullable
idCapacitacion SortOrder No
descripcion SortOrder No
f_inicio SortOrder No
f_fin SortOrder No
estado SortOrder No
tema SortOrder No
f_registro SortOrder No
usuario SortOrder No
capacitador SortOrder No
cupo SortOrder No
modalidad SortOrder No
evaluacion SortOrder No
institucion SortOrder No
tipo SortOrder No
obligatorio SortOrder No
sector SortOrder No

capacitacionAvgOrderByAggregateInput

Name Type Nullable
idCapacitacion SortOrder No
estado SortOrder No
usuario SortOrder No
cupo SortOrder No

capacitacionMaxOrderByAggregateInput

Name Type Nullable
idCapacitacion SortOrder No
descripcion SortOrder No
f_inicio SortOrder No
f_fin SortOrder No
estado SortOrder No
tema SortOrder No
f_registro SortOrder No
usuario SortOrder No
capacitador SortOrder No
cupo SortOrder No
modalidad SortOrder No
evaluacion SortOrder No
institucion SortOrder No
tipo SortOrder No
obligatorio SortOrder No
sector SortOrder No

capacitacionMinOrderByAggregateInput

Name Type Nullable
idCapacitacion SortOrder No
descripcion SortOrder No
f_inicio SortOrder No
f_fin SortOrder No
estado SortOrder No
tema SortOrder No
f_registro SortOrder No
usuario SortOrder No
capacitador SortOrder No
cupo SortOrder No
modalidad SortOrder No
evaluacion SortOrder No
institucion SortOrder No
tipo SortOrder No
obligatorio SortOrder No
sector SortOrder No

capacitacionSumOrderByAggregateInput

Name Type Nullable
idCapacitacion SortOrder No
estado SortOrder No
usuario SortOrder No
cupo SortOrder No

capacitacion_personaCountOrderByAggregateInput

Name Type Nullable
idCapacitacionPersona SortOrder No
idCapacitacion SortOrder No
idPersona SortOrder No
estado SortOrder No
fecha_registro SortOrder No
usuario SortOrder No

capacitacion_personaAvgOrderByAggregateInput

Name Type Nullable
idCapacitacionPersona SortOrder No
idCapacitacion SortOrder No
idPersona SortOrder No
estado SortOrder No
usuario SortOrder No

capacitacion_personaMaxOrderByAggregateInput

Name Type Nullable
idCapacitacionPersona SortOrder No
idCapacitacion SortOrder No
idPersona SortOrder No
estado SortOrder No
fecha_registro SortOrder No
usuario SortOrder No

capacitacion_personaMinOrderByAggregateInput

Name Type Nullable
idCapacitacionPersona SortOrder No
idCapacitacion SortOrder No
idPersona SortOrder No
estado SortOrder No
fecha_registro SortOrder No
usuario SortOrder No

capacitacion_personaSumOrderByAggregateInput

Name Type Nullable
idCapacitacionPersona SortOrder No
idCapacitacion SortOrder No
idPersona SortOrder No
estado SortOrder No
usuario SortOrder No

codificadosGen1Atr1Atr2Atr3CompoundUniqueInput

Name Type Nullable
gen1 String No
atr1 String No
atr2 String No
atr3 String No

codificadosCountOrderByAggregateInput

Name Type Nullable
gen1 SortOrder No
atr1 SortOrder No
atr2 SortOrder No
atr3 SortOrder No
gen1desc SortOrder No
atr1desc SortOrder No
atr2desc SortOrder No
atr3desc SortOrder No

codificadosMaxOrderByAggregateInput

Name Type Nullable
gen1 SortOrder No
atr1 SortOrder No
atr2 SortOrder No
atr3 SortOrder No
gen1desc SortOrder No
atr1desc SortOrder No
atr2desc SortOrder No
atr3desc SortOrder No

codificadosMinOrderByAggregateInput

Name Type Nullable
gen1 SortOrder No
atr1 SortOrder No
atr2 SortOrder No
atr3 SortOrder No
gen1desc SortOrder No
atr1desc SortOrder No
atr2desc SortOrder No
atr3desc SortOrder No

conexion_bejermanCountOrderByAggregateInput

Name Type Nullable
idConexionBejerman SortOrder No
username SortOrder No
pass SortOrder No
estado SortOrder No
usuario SortOrder No

conexion_bejermanAvgOrderByAggregateInput

Name Type Nullable
idConexionBejerman SortOrder No
estado SortOrder No
usuario SortOrder No

conexion_bejermanMaxOrderByAggregateInput

Name Type Nullable
idConexionBejerman SortOrder No
username SortOrder No
pass SortOrder No
estado SortOrder No
usuario SortOrder No

conexion_bejermanMinOrderByAggregateInput

Name Type Nullable
idConexionBejerman SortOrder No
username SortOrder No
pass SortOrder No
estado SortOrder No
usuario SortOrder No

conexion_bejermanSumOrderByAggregateInput

Name Type Nullable
idConexionBejerman SortOrder No
estado SortOrder No
usuario SortOrder No

DateTimeFilter

Name Type Nullable
equals DateTime No
in DateTime No
notIn DateTime No
lt DateTime No
lte DateTime No
gt DateTime No
gte DateTime No
not DateTime | NestedDateTimeFilter No

consolaCountOrderByAggregateInput

Name Type Nullable
idConsola SortOrder No
usuario SortOrder No
accion_id SortOrder No
accion SortOrder No
fecha_registro SortOrder No
modulo SortOrder No

consolaAvgOrderByAggregateInput

Name Type Nullable
idConsola SortOrder No
usuario SortOrder No
accion_id SortOrder No
modulo SortOrder No

consolaMaxOrderByAggregateInput

Name Type Nullable
idConsola SortOrder No
usuario SortOrder No
accion_id SortOrder No
accion SortOrder No
fecha_registro SortOrder No
modulo SortOrder No

consolaMinOrderByAggregateInput

Name Type Nullable
idConsola SortOrder No
usuario SortOrder No
accion_id SortOrder No
accion SortOrder No
fecha_registro SortOrder No
modulo SortOrder No

consolaSumOrderByAggregateInput

Name Type Nullable
idConsola SortOrder No
usuario SortOrder No
accion_id SortOrder No
modulo SortOrder No

DateTimeWithAggregatesFilter

Name Type Nullable
equals DateTime No
in DateTime No
notIn DateTime No
lt DateTime No
lte DateTime No
gt DateTime No
gte DateTime No
not DateTime | NestedDateTimeWithAggregatesFilter No
_count NestedIntFilter No
_min NestedDateTimeFilter No
_max NestedDateTimeFilter No

desempenoCountOrderByAggregateInput

Name Type Nullable
idDesempeno SortOrder No
idPersona SortOrder No
usuario SortOrder No
f_registro SortOrder No
estado SortOrder No
con_tecnico SortOrder No
con_operativo SortOrder No
precencia_prolijidad SortOrder No
puntualidad SortOrder No
cumplimiento_modalidad_trabajo SortOrder No
vocabulario SortOrder No
trabajo_equipo SortOrder No
capacidad_organizacion SortOrder No
vocacion_servicio SortOrder No
capacidad_analisis SortOrder No
obs SortOrder No
cumplimiento_normas SortOrder No

desempenoAvgOrderByAggregateInput

Name Type Nullable
idDesempeno SortOrder No
idPersona SortOrder No
usuario SortOrder No
estado SortOrder No

desempenoMaxOrderByAggregateInput

Name Type Nullable
idDesempeno SortOrder No
idPersona SortOrder No
usuario SortOrder No
f_registro SortOrder No
estado SortOrder No
con_tecnico SortOrder No
con_operativo SortOrder No
precencia_prolijidad SortOrder No
puntualidad SortOrder No
cumplimiento_modalidad_trabajo SortOrder No
vocabulario SortOrder No
trabajo_equipo SortOrder No
capacidad_organizacion SortOrder No
vocacion_servicio SortOrder No
capacidad_analisis SortOrder No
obs SortOrder No
cumplimiento_normas SortOrder No

desempenoMinOrderByAggregateInput

Name Type Nullable
idDesempeno SortOrder No
idPersona SortOrder No
usuario SortOrder No
f_registro SortOrder No
estado SortOrder No
con_tecnico SortOrder No
con_operativo SortOrder No
precencia_prolijidad SortOrder No
puntualidad SortOrder No
cumplimiento_modalidad_trabajo SortOrder No
vocabulario SortOrder No
trabajo_equipo SortOrder No
capacidad_organizacion SortOrder No
vocacion_servicio SortOrder No
capacidad_analisis SortOrder No
obs SortOrder No
cumplimiento_normas SortOrder No

desempenoSumOrderByAggregateInput

Name Type Nullable
idDesempeno SortOrder No
idPersona SortOrder No
usuario SortOrder No
estado SortOrder No

desempeno_evolCountOrderByAggregateInput

Name Type Nullable
idDesempenoEvol SortOrder No
idEvaluador SortOrder No
usuario SortOrder No
idPersona SortOrder No
f_desempeno SortOrder No
escucha SortOrder No
ayuda_cliente SortOrder No
empatia SortOrder No
comparte_informacion SortOrder No
colabora_pares SortOrder No
trabajo_positivo SortOrder No
cumple_objetivos SortOrder No
acepta_sugerencias SortOrder No
situacion_adversas SortOrder No
asistencia_puntualidad SortOrder No
imagen SortOrder No
limpieza_instalaciones SortOrder No
limpieza_vestuarios SortOrder No
minimiza_perdidas_roturas SortOrder No
objetivos SortOrder No
cumplimientos_sector SortOrder No
estado SortOrder No
conocimientos_sector SortOrder No
obs SortOrder No

desempeno_evolAvgOrderByAggregateInput

Name Type Nullable
idDesempenoEvol SortOrder No
idEvaluador SortOrder No
usuario SortOrder No
idPersona SortOrder No
escucha SortOrder No
ayuda_cliente SortOrder No
empatia SortOrder No
comparte_informacion SortOrder No
colabora_pares SortOrder No
trabajo_positivo SortOrder No
cumple_objetivos SortOrder No
acepta_sugerencias SortOrder No
situacion_adversas SortOrder No
asistencia_puntualidad SortOrder No
imagen SortOrder No
limpieza_instalaciones SortOrder No
limpieza_vestuarios SortOrder No
minimiza_perdidas_roturas SortOrder No
objetivos SortOrder No
cumplimientos_sector SortOrder No
estado SortOrder No
conocimientos_sector SortOrder No

desempeno_evolMaxOrderByAggregateInput

Name Type Nullable
idDesempenoEvol SortOrder No
idEvaluador SortOrder No
usuario SortOrder No
idPersona SortOrder No
f_desempeno SortOrder No
escucha SortOrder No
ayuda_cliente SortOrder No
empatia SortOrder No
comparte_informacion SortOrder No
colabora_pares SortOrder No
trabajo_positivo SortOrder No
cumple_objetivos SortOrder No
acepta_sugerencias SortOrder No
situacion_adversas SortOrder No
asistencia_puntualidad SortOrder No
imagen SortOrder No
limpieza_instalaciones SortOrder No
limpieza_vestuarios SortOrder No
minimiza_perdidas_roturas SortOrder No
objetivos SortOrder No
cumplimientos_sector SortOrder No
estado SortOrder No
conocimientos_sector SortOrder No
obs SortOrder No

desempeno_evolMinOrderByAggregateInput

Name Type Nullable
idDesempenoEvol SortOrder No
idEvaluador SortOrder No
usuario SortOrder No
idPersona SortOrder No
f_desempeno SortOrder No
escucha SortOrder No
ayuda_cliente SortOrder No
empatia SortOrder No
comparte_informacion SortOrder No
colabora_pares SortOrder No
trabajo_positivo SortOrder No
cumple_objetivos SortOrder No
acepta_sugerencias SortOrder No
situacion_adversas SortOrder No
asistencia_puntualidad SortOrder No
imagen SortOrder No
limpieza_instalaciones SortOrder No
limpieza_vestuarios SortOrder No
minimiza_perdidas_roturas SortOrder No
objetivos SortOrder No
cumplimientos_sector SortOrder No
estado SortOrder No
conocimientos_sector SortOrder No
obs SortOrder No

desempeno_evolSumOrderByAggregateInput

Name Type Nullable
idDesempenoEvol SortOrder No
idEvaluador SortOrder No
usuario SortOrder No
idPersona SortOrder No
escucha SortOrder No
ayuda_cliente SortOrder No
empatia SortOrder No
comparte_informacion SortOrder No
colabora_pares SortOrder No
trabajo_positivo SortOrder No
cumple_objetivos SortOrder No
acepta_sugerencias SortOrder No
situacion_adversas SortOrder No
asistencia_puntualidad SortOrder No
imagen SortOrder No
limpieza_instalaciones SortOrder No
limpieza_vestuarios SortOrder No
minimiza_perdidas_roturas SortOrder No
objetivos SortOrder No
cumplimientos_sector SortOrder No
estado SortOrder No
conocimientos_sector SortOrder No

documentosCountOrderByAggregateInput

Name Type Nullable
idDocumentos SortOrder No
documento SortOrder No
descripcion SortOrder No
file SortOrder No
path SortOrder No
url SortOrder No
fecha SortOrder No
categoria SortOrder No
tipo SortOrder No
size SortOrder No
sector SortOrder No
referencia SortOrder No
funcionalidad SortOrder No
estado SortOrder No

documentosAvgOrderByAggregateInput

Name Type Nullable
idDocumentos SortOrder No
sector SortOrder No
referencia SortOrder No

documentosMaxOrderByAggregateInput

Name Type Nullable
idDocumentos SortOrder No
documento SortOrder No
descripcion SortOrder No
file SortOrder No
path SortOrder No
url SortOrder No
fecha SortOrder No
categoria SortOrder No
tipo SortOrder No
size SortOrder No
sector SortOrder No
referencia SortOrder No
funcionalidad SortOrder No
estado SortOrder No

documentosMinOrderByAggregateInput

Name Type Nullable
idDocumentos SortOrder No
documento SortOrder No
descripcion SortOrder No
file SortOrder No
path SortOrder No
url SortOrder No
fecha SortOrder No
categoria SortOrder No
tipo SortOrder No
size SortOrder No
sector SortOrder No
referencia SortOrder No
funcionalidad SortOrder No
estado SortOrder No

documentosSumOrderByAggregateInput

Name Type Nullable
idDocumentos SortOrder No
sector SortOrder No
referencia SortOrder No

estudioCountOrderByAggregateInput

Name Type Nullable
idEstudio SortOrder No
institucion SortOrder No
titulo SortOrder No
fecha SortOrder No
estado SortOrder No
tipo SortOrder No

estudioAvgOrderByAggregateInput

Name Type Nullable
idEstudio SortOrder No
institucion SortOrder No
estado SortOrder No

estudioMaxOrderByAggregateInput

Name Type Nullable
idEstudio SortOrder No
institucion SortOrder No
titulo SortOrder No
fecha SortOrder No
estado SortOrder No
tipo SortOrder No

estudioMinOrderByAggregateInput

Name Type Nullable
idEstudio SortOrder No
institucion SortOrder No
titulo SortOrder No
fecha SortOrder No
estado SortOrder No
tipo SortOrder No

estudioSumOrderByAggregateInput

Name Type Nullable
idEstudio SortOrder No
institucion SortOrder No
estado SortOrder No

estudio_personaCountOrderByAggregateInput

Name Type Nullable
idEstudio_persona SortOrder No
idEstudio SortOrder No
idPersona SortOrder No
descripcion SortOrder No
fecha_registro SortOrder No
usuario SortOrder No
estado SortOrder No
estado_str SortOrder No
fecha_inicio SortOrder No
fecha_finalizacion SortOrder No

estudio_personaAvgOrderByAggregateInput

Name Type Nullable
idEstudio_persona SortOrder No
idEstudio SortOrder No
idPersona SortOrder No
usuario SortOrder No
estado SortOrder No

estudio_personaMaxOrderByAggregateInput

Name Type Nullable
idEstudio_persona SortOrder No
idEstudio SortOrder No
idPersona SortOrder No
descripcion SortOrder No
fecha_registro SortOrder No
usuario SortOrder No
estado SortOrder No
estado_str SortOrder No
fecha_inicio SortOrder No
fecha_finalizacion SortOrder No

estudio_personaMinOrderByAggregateInput

Name Type Nullable
idEstudio_persona SortOrder No
idEstudio SortOrder No
idPersona SortOrder No
descripcion SortOrder No
fecha_registro SortOrder No
usuario SortOrder No
estado SortOrder No
estado_str SortOrder No
fecha_inicio SortOrder No
fecha_finalizacion SortOrder No

estudio_personaSumOrderByAggregateInput

Name Type Nullable
idEstudio_persona SortOrder No
idEstudio SortOrder No
idPersona SortOrder No
usuario SortOrder No
estado SortOrder No

falla_articuloCountOrderByAggregateInput

Name Type Nullable
idFallasArticulos SortOrder No
falla SortOrder No
articulo SortOrder No

falla_articuloAvgOrderByAggregateInput

Name Type Nullable
idFallasArticulos SortOrder No
falla SortOrder No
articulo SortOrder No

falla_articuloMaxOrderByAggregateInput

Name Type Nullable
idFallasArticulos SortOrder No
falla SortOrder No
articulo SortOrder No

falla_articuloMinOrderByAggregateInput

Name Type Nullable
idFallasArticulos SortOrder No
falla SortOrder No
articulo SortOrder No

falla_articuloSumOrderByAggregateInput

Name Type Nullable
idFallasArticulos SortOrder No
falla SortOrder No
articulo SortOrder No

fallasCountOrderByAggregateInput

Name Type Nullable
idFallas SortOrder No
descripcion SortOrder No
tipo SortOrder No
estado SortOrder No
gravedad SortOrder No
articulo SortOrder No

fallasAvgOrderByAggregateInput

Name Type Nullable
idFallas SortOrder No
estado SortOrder No

fallasMaxOrderByAggregateInput

Name Type Nullable
idFallas SortOrder No
descripcion SortOrder No
tipo SortOrder No
estado SortOrder No
gravedad SortOrder No
articulo SortOrder No

fallasMinOrderByAggregateInput

Name Type Nullable
idFallas SortOrder No
descripcion SortOrder No
tipo SortOrder No
estado SortOrder No
gravedad SortOrder No
articulo SortOrder No

fallasSumOrderByAggregateInput

Name Type Nullable
idFallas SortOrder No
estado SortOrder No

fallas_maquinasCountOrderByAggregateInput

Name Type Nullable
idFallas_maquinas SortOrder No
maquina SortOrder No
falla SortOrder No
fecha_registro SortOrder No
estado SortOrder No
usuario SortOrder No
ticket SortOrder No

fallas_maquinasAvgOrderByAggregateInput

Name Type Nullable
idFallas_maquinas SortOrder No
maquina SortOrder No
falla SortOrder No
estado SortOrder No
usuario SortOrder No
ticket SortOrder No

fallas_maquinasMaxOrderByAggregateInput

Name Type Nullable
idFallas_maquinas SortOrder No
maquina SortOrder No
falla SortOrder No
fecha_registro SortOrder No
estado SortOrder No
usuario SortOrder No
ticket SortOrder No

fallas_maquinasMinOrderByAggregateInput

Name Type Nullable
idFallas_maquinas SortOrder No
maquina SortOrder No
falla SortOrder No
fecha_registro SortOrder No
estado SortOrder No
usuario SortOrder No
ticket SortOrder No

fallas_maquinasSumOrderByAggregateInput

Name Type Nullable
idFallas_maquinas SortOrder No
maquina SortOrder No
falla SortOrder No
estado SortOrder No
usuario SortOrder No
ticket SortOrder No

familiarCountOrderByAggregateInput

Name Type Nullable
idFamiliar SortOrder No
idPersona SortOrder No
parentezco SortOrder No
documento SortOrder No
estado SortOrder No
nombre SortOrder No
tipo_doc SortOrder No
telefono SortOrder No

familiarAvgOrderByAggregateInput

Name Type Nullable
idFamiliar SortOrder No
idPersona SortOrder No
estado SortOrder No

familiarMaxOrderByAggregateInput

Name Type Nullable
idFamiliar SortOrder No
idPersona SortOrder No
parentezco SortOrder No
documento SortOrder No
estado SortOrder No
nombre SortOrder No
tipo_doc SortOrder No
telefono SortOrder No

familiarMinOrderByAggregateInput

Name Type Nullable
idFamiliar SortOrder No
idPersona SortOrder No
parentezco SortOrder No
documento SortOrder No
estado SortOrder No
nombre SortOrder No
tipo_doc SortOrder No
telefono SortOrder No

familiarSumOrderByAggregateInput

Name Type Nullable
idFamiliar SortOrder No
idPersona SortOrder No
estado SortOrder No

fechalimiteprogramadoCountOrderByAggregateInput

Name Type Nullable
idFechaLimiteProgramado SortOrder No
fecha SortOrder No
usuario SortOrder No
estado SortOrder No
f_registro SortOrder No

fechalimiteprogramadoAvgOrderByAggregateInput

Name Type Nullable
idFechaLimiteProgramado SortOrder No
usuario SortOrder No
estado SortOrder No

fechalimiteprogramadoMaxOrderByAggregateInput

Name Type Nullable
idFechaLimiteProgramado SortOrder No
fecha SortOrder No
usuario SortOrder No
estado SortOrder No
f_registro SortOrder No

fechalimiteprogramadoMinOrderByAggregateInput

Name Type Nullable
idFechaLimiteProgramado SortOrder No
fecha SortOrder No
usuario SortOrder No
estado SortOrder No
f_registro SortOrder No

fechalimiteprogramadoSumOrderByAggregateInput

Name Type Nullable
idFechaLimiteProgramado SortOrder No
usuario SortOrder No
estado SortOrder No

institucionCountOrderByAggregateInput

Name Type Nullable
idInstitucion SortOrder No
nombre SortOrder No
direccion SortOrder No
telefono SortOrder No
email SortOrder No
web SortOrder No
estado SortOrder No

institucionAvgOrderByAggregateInput

Name Type Nullable
idInstitucion SortOrder No
estado SortOrder No

institucionMaxOrderByAggregateInput

Name Type Nullable
idInstitucion SortOrder No
nombre SortOrder No
direccion SortOrder No
telefono SortOrder No
email SortOrder No
web SortOrder No
estado SortOrder No

institucionMinOrderByAggregateInput

Name Type Nullable
idInstitucion SortOrder No
nombre SortOrder No
direccion SortOrder No
telefono SortOrder No
email SortOrder No
web SortOrder No
estado SortOrder No

institucionSumOrderByAggregateInput

Name Type Nullable
idInstitucion SortOrder No
estado SortOrder No

licenciaCountOrderByAggregateInput

Name Type Nullable
idLicencia SortOrder No
titulo SortOrder No
descripcion SortOrder No
dias SortOrder No
estado SortOrder No

licenciaAvgOrderByAggregateInput

Name Type Nullable
idLicencia SortOrder No
dias SortOrder No
estado SortOrder No

licenciaMaxOrderByAggregateInput

Name Type Nullable
idLicencia SortOrder No
titulo SortOrder No
descripcion SortOrder No
dias SortOrder No
estado SortOrder No

licenciaMinOrderByAggregateInput

Name Type Nullable
idLicencia SortOrder No
titulo SortOrder No
descripcion SortOrder No
dias SortOrder No
estado SortOrder No

licenciaSumOrderByAggregateInput

Name Type Nullable
idLicencia SortOrder No
dias SortOrder No
estado SortOrder No

licencia_personaCountOrderByAggregateInput

Name Type Nullable
idLicenciaPersona SortOrder No
idLicencia SortOrder No
idPersona SortOrder No
fecha_registro SortOrder No
usuario SortOrder No
estado SortOrder No
descripcion SortOrder No
documento SortOrder No
dias SortOrder No
f_inicio SortOrder No
f_fin SortOrder No

licencia_personaAvgOrderByAggregateInput

Name Type Nullable
idLicenciaPersona SortOrder No
idLicencia SortOrder No
idPersona SortOrder No
usuario SortOrder No
estado SortOrder No
dias SortOrder No

licencia_personaMaxOrderByAggregateInput

Name Type Nullable
idLicenciaPersona SortOrder No
idLicencia SortOrder No
idPersona SortOrder No
fecha_registro SortOrder No
usuario SortOrder No
estado SortOrder No
descripcion SortOrder No
documento SortOrder No
dias SortOrder No
f_inicio SortOrder No
f_fin SortOrder No

licencia_personaMinOrderByAggregateInput

Name Type Nullable
idLicenciaPersona SortOrder No
idLicencia SortOrder No
idPersona SortOrder No
fecha_registro SortOrder No
usuario SortOrder No
estado SortOrder No
descripcion SortOrder No
documento SortOrder No
dias SortOrder No
f_inicio SortOrder No
f_fin SortOrder No

licencia_personaSumOrderByAggregateInput

Name Type Nullable
idLicenciaPersona SortOrder No
idLicencia SortOrder No
idPersona SortOrder No
usuario SortOrder No
estado SortOrder No
dias SortOrder No

maquinasCountOrderByAggregateInput

Name Type Nullable
idMaquina SortOrder No
nro_egm SortOrder No
fabricante SortOrder No
modelo SortOrder No
p_pago SortOrder No
denom SortOrder No
juego SortOrder No
nro_serie SortOrder No
programa SortOrder No
credito SortOrder No
estado SortOrder No
img SortOrder No
ap_minima SortOrder No
ap_maxima SortOrder No
cant_lineas SortOrder No
tipo_juego SortOrder No

maquinasAvgOrderByAggregateInput

Name Type Nullable
idMaquina SortOrder No
nro_egm SortOrder No

maquinasMaxOrderByAggregateInput

Name Type Nullable
idMaquina SortOrder No
nro_egm SortOrder No
fabricante SortOrder No
modelo SortOrder No
p_pago SortOrder No
denom SortOrder No
juego SortOrder No
nro_serie SortOrder No
programa SortOrder No
credito SortOrder No
estado SortOrder No
img SortOrder No
ap_minima SortOrder No
ap_maxima SortOrder No
cant_lineas SortOrder No
tipo_juego SortOrder No

maquinasMinOrderByAggregateInput

Name Type Nullable
idMaquina SortOrder No
nro_egm SortOrder No
fabricante SortOrder No
modelo SortOrder No
p_pago SortOrder No
denom SortOrder No
juego SortOrder No
nro_serie SortOrder No
programa SortOrder No
credito SortOrder No
estado SortOrder No
img SortOrder No
ap_minima SortOrder No
ap_maxima SortOrder No
cant_lineas SortOrder No
tipo_juego SortOrder No

maquinasSumOrderByAggregateInput

Name Type Nullable
idMaquina SortOrder No
nro_egm SortOrder No

maquinas_piezasCountOrderByAggregateInput

Name Type Nullable
nro_egm SortOrder No
modelo SortOrder No
tipo_aceptbill SortOrder No
tipo_impre SortOrder No
tipo_moni SortOrder No

maquinas_piezasAvgOrderByAggregateInput

Name Type Nullable
nro_egm SortOrder No

maquinas_piezasMaxOrderByAggregateInput

Name Type Nullable
nro_egm SortOrder No
modelo SortOrder No
tipo_aceptbill SortOrder No
tipo_impre SortOrder No
tipo_moni SortOrder No

maquinas_piezasMinOrderByAggregateInput

Name Type Nullable
nro_egm SortOrder No
modelo SortOrder No
tipo_aceptbill SortOrder No
tipo_impre SortOrder No
tipo_moni SortOrder No

maquinas_piezasSumOrderByAggregateInput

Name Type Nullable
nro_egm SortOrder No

menu_personalCountOrderByAggregateInput

Name Type Nullable
idMenuPersonal SortOrder No
estado SortOrder No
f_proceso SortOrder No
descripcion SortOrder No
usuario_carga SortOrder No
fecha_menu SortOrder No
tipo_menu SortOrder No
valor SortOrder No

menu_personalAvgOrderByAggregateInput

Name Type Nullable
idMenuPersonal SortOrder No
estado SortOrder No
usuario_carga SortOrder No
valor SortOrder No

menu_personalMaxOrderByAggregateInput

Name Type Nullable
idMenuPersonal SortOrder No
estado SortOrder No
f_proceso SortOrder No
descripcion SortOrder No
usuario_carga SortOrder No
fecha_menu SortOrder No
tipo_menu SortOrder No
valor SortOrder No

menu_personalMinOrderByAggregateInput

Name Type Nullable
idMenuPersonal SortOrder No
estado SortOrder No
f_proceso SortOrder No
descripcion SortOrder No
usuario_carga SortOrder No
fecha_menu SortOrder No
tipo_menu SortOrder No
valor SortOrder No

menu_personalSumOrderByAggregateInput

Name Type Nullable
idMenuPersonal SortOrder No
estado SortOrder No
usuario_carga SortOrder No
valor SortOrder No

menu_personal_20190904CountOrderByAggregateInput

Name Type Nullable
idMenuPersonal SortOrder No
estado SortOrder No
f_proceso SortOrder No
descripcion SortOrder No
usuario_carga SortOrder No
fecha_menu SortOrder No

menu_personal_20190904AvgOrderByAggregateInput

Name Type Nullable
idMenuPersonal SortOrder No
estado SortOrder No
usuario_carga SortOrder No

menu_personal_20190904MaxOrderByAggregateInput

Name Type Nullable
idMenuPersonal SortOrder No
estado SortOrder No
f_proceso SortOrder No
descripcion SortOrder No
usuario_carga SortOrder No
fecha_menu SortOrder No

menu_personal_20190904MinOrderByAggregateInput

Name Type Nullable
idMenuPersonal SortOrder No
estado SortOrder No
f_proceso SortOrder No
descripcion SortOrder No
usuario_carga SortOrder No
fecha_menu SortOrder No

menu_personal_20190904SumOrderByAggregateInput

Name Type Nullable
idMenuPersonal SortOrder No
estado SortOrder No
usuario_carga SortOrder No

menu_personal_oldCountOrderByAggregateInput

Name Type Nullable
idMenuPersonal SortOrder No
estado SortOrder No
f_proceso SortOrder No
descripcion SortOrder No
usuario_carga SortOrder No
fecha_menu SortOrder No

menu_personal_oldAvgOrderByAggregateInput

Name Type Nullable
idMenuPersonal SortOrder No
estado SortOrder No
usuario_carga SortOrder No

menu_personal_oldMaxOrderByAggregateInput

Name Type Nullable
idMenuPersonal SortOrder No
estado SortOrder No
f_proceso SortOrder No
descripcion SortOrder No
usuario_carga SortOrder No
fecha_menu SortOrder No

menu_personal_oldMinOrderByAggregateInput

Name Type Nullable
idMenuPersonal SortOrder No
estado SortOrder No
f_proceso SortOrder No
descripcion SortOrder No
usuario_carga SortOrder No
fecha_menu SortOrder No

menu_personal_oldSumOrderByAggregateInput

Name Type Nullable
idMenuPersonal SortOrder No
estado SortOrder No
usuario_carga SortOrder No

movimiento_articuloCountOrderByAggregateInput

Name Type Nullable
idMovimiento_articulo SortOrder No
articulo SortOrder No
cantidad SortOrder No
fecha_hora SortOrder No
movimiento SortOrder No
usuario SortOrder No
locacion SortOrder No

movimiento_articuloAvgOrderByAggregateInput

Name Type Nullable
idMovimiento_articulo SortOrder No
articulo SortOrder No
cantidad SortOrder No
usuario SortOrder No

movimiento_articuloMaxOrderByAggregateInput

Name Type Nullable
idMovimiento_articulo SortOrder No
articulo SortOrder No
cantidad SortOrder No
fecha_hora SortOrder No
movimiento SortOrder No
usuario SortOrder No
locacion SortOrder No

movimiento_articuloMinOrderByAggregateInput

Name Type Nullable
idMovimiento_articulo SortOrder No
articulo SortOrder No
cantidad SortOrder No
fecha_hora SortOrder No
movimiento SortOrder No
usuario SortOrder No
locacion SortOrder No

movimiento_articuloSumOrderByAggregateInput

Name Type Nullable
idMovimiento_articulo SortOrder No
articulo SortOrder No
cantidad SortOrder No
usuario SortOrder No

novedadesCountOrderByAggregateInput

Name Type Nullable
idNovedades SortOrder No
texto SortOrder No
referencia SortOrder No
estado SortOrder No
f_proceso SortOrder No
usuario SortOrder No
tipo SortOrder No

novedadesAvgOrderByAggregateInput

Name Type Nullable
idNovedades SortOrder No
referencia SortOrder No
estado SortOrder No
usuario SortOrder No

novedadesMaxOrderByAggregateInput

Name Type Nullable
idNovedades SortOrder No
texto SortOrder No
referencia SortOrder No
estado SortOrder No
f_proceso SortOrder No
usuario SortOrder No
tipo SortOrder No

novedadesMinOrderByAggregateInput

Name Type Nullable
idNovedades SortOrder No
texto SortOrder No
referencia SortOrder No
estado SortOrder No
f_proceso SortOrder No
usuario SortOrder No
tipo SortOrder No

novedadesSumOrderByAggregateInput

Name Type Nullable
idNovedades SortOrder No
referencia SortOrder No
estado SortOrder No
usuario SortOrder No

numericoCountOrderByAggregateInput

Name Type Nullable
numericocol SortOrder No

numericoAvgOrderByAggregateInput

Name Type Nullable
numericocol SortOrder No

numericoMaxOrderByAggregateInput

Name Type Nullable
numericocol SortOrder No

numericoMinOrderByAggregateInput

Name Type Nullable
numericocol SortOrder No

numericoSumOrderByAggregateInput

Name Type Nullable
numericocol SortOrder No

parametro_menuCountOrderByAggregateInput

Name Type Nullable
idParametroMenu SortOrder No
dia SortOrder No
tiempo SortOrder No
cantidad SortOrder No
f_proceso SortOrder No
usuario_carga SortOrder No
estado SortOrder No

parametro_menuAvgOrderByAggregateInput

Name Type Nullable
idParametroMenu SortOrder No
cantidad SortOrder No
usuario_carga SortOrder No
estado SortOrder No

parametro_menuMaxOrderByAggregateInput

Name Type Nullable
idParametroMenu SortOrder No
dia SortOrder No
tiempo SortOrder No
cantidad SortOrder No
f_proceso SortOrder No
usuario_carga SortOrder No
estado SortOrder No

parametro_menuMinOrderByAggregateInput

Name Type Nullable
idParametroMenu SortOrder No
dia SortOrder No
tiempo SortOrder No
cantidad SortOrder No
f_proceso SortOrder No
usuario_carga SortOrder No
estado SortOrder No

parametro_menuSumOrderByAggregateInput

Name Type Nullable
idParametroMenu SortOrder No
cantidad SortOrder No
usuario_carga SortOrder No
estado SortOrder No

pedidoCountOrderByAggregateInput

Name Type Nullable
idPedido SortOrder No
idCalendarioMenu SortOrder No
idMenu SortOrder No
usuario SortOrder No
f_registro SortOrder No
f_listo SortOrder No
estado SortOrder No
persona SortOrder No
legajo SortOrder No
persona_str SortOrder No
descripcion SortOrder No
importe_externo SortOrder No
importe_interno SortOrder No
idMenuBingo SortOrder No
turno SortOrder No

pedidoAvgOrderByAggregateInput

Name Type Nullable
idPedido SortOrder No
idCalendarioMenu SortOrder No
idMenu SortOrder No
usuario SortOrder No
estado SortOrder No
persona SortOrder No
importe_externo SortOrder No
importe_interno SortOrder No
idMenuBingo SortOrder No

pedidoMaxOrderByAggregateInput

Name Type Nullable
idPedido SortOrder No
idCalendarioMenu SortOrder No
idMenu SortOrder No
usuario SortOrder No
f_registro SortOrder No
f_listo SortOrder No
estado SortOrder No
persona SortOrder No
legajo SortOrder No
persona_str SortOrder No
descripcion SortOrder No
importe_externo SortOrder No
importe_interno SortOrder No
idMenuBingo SortOrder No
turno SortOrder No

pedidoMinOrderByAggregateInput

Name Type Nullable
idPedido SortOrder No
idCalendarioMenu SortOrder No
idMenu SortOrder No
usuario SortOrder No
f_registro SortOrder No
f_listo SortOrder No
estado SortOrder No
persona SortOrder No
legajo SortOrder No
persona_str SortOrder No
descripcion SortOrder No
importe_externo SortOrder No
importe_interno SortOrder No
idMenuBingo SortOrder No
turno SortOrder No

pedidoSumOrderByAggregateInput

Name Type Nullable
idPedido SortOrder No
idCalendarioMenu SortOrder No
idMenu SortOrder No
usuario SortOrder No
estado SortOrder No
persona SortOrder No
importe_externo SortOrder No
importe_interno SortOrder No
idMenuBingo SortOrder No

pedido_oldCountOrderByAggregateInput

Name Type Nullable
idPedido SortOrder No
idCalendarioMenu SortOrder No
idMenu SortOrder No
usuario SortOrder No
f_registro SortOrder No
f_listo SortOrder No
estado SortOrder No
persona SortOrder No
legajo SortOrder No
persona_str SortOrder No
descripcion SortOrder No

pedido_oldAvgOrderByAggregateInput

Name Type Nullable
idPedido SortOrder No
idCalendarioMenu SortOrder No
idMenu SortOrder No
usuario SortOrder No
estado SortOrder No
persona SortOrder No

pedido_oldMaxOrderByAggregateInput

Name Type Nullable
idPedido SortOrder No
idCalendarioMenu SortOrder No
idMenu SortOrder No
usuario SortOrder No
f_registro SortOrder No
f_listo SortOrder No
estado SortOrder No
persona SortOrder No
legajo SortOrder No
persona_str SortOrder No
descripcion SortOrder No

pedido_oldMinOrderByAggregateInput

Name Type Nullable
idPedido SortOrder No
idCalendarioMenu SortOrder No
idMenu SortOrder No
usuario SortOrder No
f_registro SortOrder No
f_listo SortOrder No
estado SortOrder No
persona SortOrder No
legajo SortOrder No
persona_str SortOrder No
descripcion SortOrder No

pedido_oldSumOrderByAggregateInput

Name Type Nullable
idPedido SortOrder No
idCalendarioMenu SortOrder No
idMenu SortOrder No
usuario SortOrder No
estado SortOrder No
persona SortOrder No

permisosCountOrderByAggregateInput

Name Type Nullable
idPermiso SortOrder No
nombre SortOrder No
permisos SortOrder No
estado SortOrder No
fecha_registro SortOrder No

permisosAvgOrderByAggregateInput

Name Type Nullable
idPermiso SortOrder No

permisosMaxOrderByAggregateInput

Name Type Nullable
idPermiso SortOrder No
nombre SortOrder No
permisos SortOrder No
estado SortOrder No
fecha_registro SortOrder No

permisosMinOrderByAggregateInput

Name Type Nullable
idPermiso SortOrder No
nombre SortOrder No
permisos SortOrder No
estado SortOrder No
fecha_registro SortOrder No

permisosSumOrderByAggregateInput

Name Type Nullable
idPermiso SortOrder No

DecimalFilter

Name Type Nullable
equals Decimal No
in Decimal[] No
notIn Decimal[] No
lt Decimal No
lte Decimal No
gt Decimal No
gte Decimal No
not Decimal | NestedDecimalFilter No

BytesNullableFilter

Name Type Nullable
equals Bytes | Null Yes
in Bytes[] | Null Yes
notIn Bytes[] | Null Yes
not Bytes | NestedBytesNullableFilter | Null Yes

personaCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
nombre SortOrder No
apellido SortOrder No
alta SortOrder No
id_tarjeta SortOrder No
legajo SortOrder No
preciohora SortOrder No
extras SortOrder No
id_bioadmin SortOrder No
imagen SortOrder No
inc_reportes SortOrder No
eliminado SortOrder No
fecha_ingreso SortOrder No
contrasena SortOrder No
rol SortOrder No
direccion SortOrder No
dni SortOrder No
email SortOrder No
cel SortOrder No
tel SortOrder No
cp SortOrder No
vehiculo SortOrder No
patente SortOrder No
id_provincia SortOrder No
localidad SortOrder No
id_calendario SortOrder No
tarjetazk SortOrder No
fecha_venc SortOrder No
id_sector_por_empresa SortOrder No
remoto_password SortOrder No
envio_tarde SortOrder No
ultima_fecha_envio_tarde SortOrder No
email_trabajo SortOrder No
cuil SortOrder No
pass_myweb SortOrder No
modulos_habilitados SortOrder No
IDPHONE SortOrder No
ES_VISITA SortOrder No
V_EMPRESA_ORIGEN SortOrder No
V_EMPLEADO_VISITA SortOrder No
V_PERTENENCIAS SortOrder No
V_NRO_ART SortOrder No
V_MOTIVO_VISITA SortOrder No
V_VENCIDO SortOrder No
FECHA_NACIMIENTO SortOrder No
PUESTO_TRABAJO SortOrder No

personaAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
id_tarjeta SortOrder No
preciohora SortOrder No
extras SortOrder No
id_bioadmin SortOrder No
inc_reportes SortOrder No
rol SortOrder No
id_provincia SortOrder No
id_calendario SortOrder No
id_sector_por_empresa SortOrder No
envio_tarde SortOrder No
ES_VISITA SortOrder No
V_EMPLEADO_VISITA SortOrder No
V_VENCIDO SortOrder No

personaMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
nombre SortOrder No
apellido SortOrder No
alta SortOrder No
id_tarjeta SortOrder No
legajo SortOrder No
preciohora SortOrder No
extras SortOrder No
id_bioadmin SortOrder No
imagen SortOrder No
inc_reportes SortOrder No
eliminado SortOrder No
fecha_ingreso SortOrder No
contrasena SortOrder No
rol SortOrder No
direccion SortOrder No
dni SortOrder No
email SortOrder No
cel SortOrder No
tel SortOrder No
cp SortOrder No
vehiculo SortOrder No
patente SortOrder No
id_provincia SortOrder No
localidad SortOrder No
id_calendario SortOrder No
tarjetazk SortOrder No
fecha_venc SortOrder No
id_sector_por_empresa SortOrder No
remoto_password SortOrder No
envio_tarde SortOrder No
ultima_fecha_envio_tarde SortOrder No
email_trabajo SortOrder No
cuil SortOrder No
pass_myweb SortOrder No
modulos_habilitados SortOrder No
IDPHONE SortOrder No
ES_VISITA SortOrder No
V_EMPRESA_ORIGEN SortOrder No
V_EMPLEADO_VISITA SortOrder No
V_PERTENENCIAS SortOrder No
V_NRO_ART SortOrder No
V_MOTIVO_VISITA SortOrder No
V_VENCIDO SortOrder No
FECHA_NACIMIENTO SortOrder No
PUESTO_TRABAJO SortOrder No

personaMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
nombre SortOrder No
apellido SortOrder No
alta SortOrder No
id_tarjeta SortOrder No
legajo SortOrder No
preciohora SortOrder No
extras SortOrder No
id_bioadmin SortOrder No
imagen SortOrder No
inc_reportes SortOrder No
eliminado SortOrder No
fecha_ingreso SortOrder No
contrasena SortOrder No
rol SortOrder No
direccion SortOrder No
dni SortOrder No
email SortOrder No
cel SortOrder No
tel SortOrder No
cp SortOrder No
vehiculo SortOrder No
patente SortOrder No
id_provincia SortOrder No
localidad SortOrder No
id_calendario SortOrder No
tarjetazk SortOrder No
fecha_venc SortOrder No
id_sector_por_empresa SortOrder No
remoto_password SortOrder No
envio_tarde SortOrder No
ultima_fecha_envio_tarde SortOrder No
email_trabajo SortOrder No
cuil SortOrder No
pass_myweb SortOrder No
modulos_habilitados SortOrder No
IDPHONE SortOrder No
ES_VISITA SortOrder No
V_EMPRESA_ORIGEN SortOrder No
V_EMPLEADO_VISITA SortOrder No
V_PERTENENCIAS SortOrder No
V_NRO_ART SortOrder No
V_MOTIVO_VISITA SortOrder No
V_VENCIDO SortOrder No
FECHA_NACIMIENTO SortOrder No
PUESTO_TRABAJO SortOrder No

personaSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
id_tarjeta SortOrder No
preciohora SortOrder No
extras SortOrder No
id_bioadmin SortOrder No
inc_reportes SortOrder No
rol SortOrder No
id_provincia SortOrder No
id_calendario SortOrder No
id_sector_por_empresa SortOrder No
envio_tarde SortOrder No
ES_VISITA SortOrder No
V_EMPLEADO_VISITA SortOrder No
V_VENCIDO SortOrder No

DecimalWithAggregatesFilter

Name Type Nullable
equals Decimal No
in Decimal[] No
notIn Decimal[] No
lt Decimal No
lte Decimal No
gt Decimal No
gte Decimal No
not Decimal | NestedDecimalWithAggregatesFilter No
_count NestedIntFilter No
_avg NestedDecimalFilter No
_sum NestedDecimalFilter No
_min NestedDecimalFilter No
_max NestedDecimalFilter No

BytesNullableWithAggregatesFilter

Name Type Nullable
equals Bytes | Null Yes
in Bytes[] | Null Yes
notIn Bytes[] | Null Yes
not Bytes | NestedBytesNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedBytesNullableFilter No
_max NestedBytesNullableFilter No

premioCountOrderByAggregateInput

Name Type Nullable
idPremio SortOrder No
nombre SortOrder No
descripcion SortOrder No
img SortOrder No
estado SortOrder No
f_premio SortOrder No
f_proceso SortOrder No
tipo SortOrder No
mes_cumplido SortOrder No

premioAvgOrderByAggregateInput

Name Type Nullable
idPremio SortOrder No
estado SortOrder No
mes_cumplido SortOrder No

premioMaxOrderByAggregateInput

Name Type Nullable
idPremio SortOrder No
nombre SortOrder No
descripcion SortOrder No
img SortOrder No
estado SortOrder No
f_premio SortOrder No
f_proceso SortOrder No
tipo SortOrder No
mes_cumplido SortOrder No

premioMinOrderByAggregateInput

Name Type Nullable
idPremio SortOrder No
nombre SortOrder No
descripcion SortOrder No
img SortOrder No
estado SortOrder No
f_premio SortOrder No
f_proceso SortOrder No
tipo SortOrder No
mes_cumplido SortOrder No

premioSumOrderByAggregateInput

Name Type Nullable
idPremio SortOrder No
estado SortOrder No
mes_cumplido SortOrder No

premio_personaCountOrderByAggregateInput

Name Type Nullable
idPremioPersona SortOrder No
idPremio SortOrder No
idPersona SortOrder No
descripcion SortOrder No
fecha_entrega SortOrder No
tipo SortOrder No
estado SortOrder No
usuario SortOrder No
fecha_registro SortOrder No

premio_personaAvgOrderByAggregateInput

Name Type Nullable
idPremioPersona SortOrder No
idPremio SortOrder No
idPersona SortOrder No
estado SortOrder No
usuario SortOrder No

premio_personaMaxOrderByAggregateInput

Name Type Nullable
idPremioPersona SortOrder No
idPremio SortOrder No
idPersona SortOrder No
descripcion SortOrder No
fecha_entrega SortOrder No
tipo SortOrder No
estado SortOrder No
usuario SortOrder No
fecha_registro SortOrder No

premio_personaMinOrderByAggregateInput

Name Type Nullable
idPremioPersona SortOrder No
idPremio SortOrder No
idPersona SortOrder No
descripcion SortOrder No
fecha_entrega SortOrder No
tipo SortOrder No
estado SortOrder No
usuario SortOrder No
fecha_registro SortOrder No

premio_personaSumOrderByAggregateInput

Name Type Nullable
idPremioPersona SortOrder No
idPremio SortOrder No
idPersona SortOrder No
estado SortOrder No
usuario SortOrder No

salaCountOrderByAggregateInput

Name Type Nullable
idSala SortOrder No
title SortOrder No
descripcion SortOrder No
color SortOrder No
textColor SortOrder No
start SortOrder No
end SortOrder No
estado SortOrder No
f_creacion SortOrder No
usuario SortOrder No

salaAvgOrderByAggregateInput

Name Type Nullable
idSala SortOrder No
estado SortOrder No
usuario SortOrder No

salaMaxOrderByAggregateInput

Name Type Nullable
idSala SortOrder No
title SortOrder No
descripcion SortOrder No
color SortOrder No
textColor SortOrder No
start SortOrder No
end SortOrder No
estado SortOrder No
f_creacion SortOrder No
usuario SortOrder No

salaMinOrderByAggregateInput

Name Type Nullable
idSala SortOrder No
title SortOrder No
descripcion SortOrder No
color SortOrder No
textColor SortOrder No
start SortOrder No
end SortOrder No
estado SortOrder No
f_creacion SortOrder No
usuario SortOrder No

salaSumOrderByAggregateInput

Name Type Nullable
idSala SortOrder No
estado SortOrder No
usuario SortOrder No

sala_copyCountOrderByAggregateInput

Name Type Nullable
idSala SortOrder No
title SortOrder No
descripcion SortOrder No
color SortOrder No
textColor SortOrder No
start SortOrder No
end SortOrder No
estado SortOrder No
f_creacion SortOrder No
usuario SortOrder No

sala_copyAvgOrderByAggregateInput

Name Type Nullable
idSala SortOrder No
estado SortOrder No
usuario SortOrder No

sala_copyMaxOrderByAggregateInput

Name Type Nullable
idSala SortOrder No
title SortOrder No
descripcion SortOrder No
color SortOrder No
textColor SortOrder No
start SortOrder No
end SortOrder No
estado SortOrder No
f_creacion SortOrder No
usuario SortOrder No

sala_copyMinOrderByAggregateInput

Name Type Nullable
idSala SortOrder No
title SortOrder No
descripcion SortOrder No
color SortOrder No
textColor SortOrder No
start SortOrder No
end SortOrder No
estado SortOrder No
f_creacion SortOrder No
usuario SortOrder No

sala_copySumOrderByAggregateInput

Name Type Nullable
idSala SortOrder No
estado SortOrder No
usuario SortOrder No

sectorCountOrderByAggregateInput

Name Type Nullable
idSector SortOrder No
nombre SortOrder No
estado SortOrder No

sectorAvgOrderByAggregateInput

Name Type Nullable
idSector SortOrder No
estado SortOrder No

sectorMaxOrderByAggregateInput

Name Type Nullable
idSector SortOrder No
nombre SortOrder No
estado SortOrder No

sectorMinOrderByAggregateInput

Name Type Nullable
idSector SortOrder No
nombre SortOrder No
estado SortOrder No

sectorSumOrderByAggregateInput

Name Type Nullable
idSector SortOrder No
estado SortOrder No

seleccion_personalCountOrderByAggregateInput

Name Type Nullable
idSeleccion_personal SortOrder No
nombre SortOrder No
apellido SortOrder No
domicilio SortOrder No
contacto SortOrder No
fuente_reclutamiento SortOrder No
descripcion SortOrder No
estado SortOrder No
f_proceso SortOrder No
meta_estado SortOrder No
fecha_meta_estado SortOrder No
sector SortOrder No

seleccion_personalAvgOrderByAggregateInput

Name Type Nullable
idSeleccion_personal SortOrder No
estado SortOrder No
sector SortOrder No

seleccion_personalMaxOrderByAggregateInput

Name Type Nullable
idSeleccion_personal SortOrder No
nombre SortOrder No
apellido SortOrder No
domicilio SortOrder No
contacto SortOrder No
fuente_reclutamiento SortOrder No
descripcion SortOrder No
estado SortOrder No
f_proceso SortOrder No
meta_estado SortOrder No
fecha_meta_estado SortOrder No
sector SortOrder No

seleccion_personalMinOrderByAggregateInput

Name Type Nullable
idSeleccion_personal SortOrder No
nombre SortOrder No
apellido SortOrder No
domicilio SortOrder No
contacto SortOrder No
fuente_reclutamiento SortOrder No
descripcion SortOrder No
estado SortOrder No
f_proceso SortOrder No
meta_estado SortOrder No
fecha_meta_estado SortOrder No
sector SortOrder No

seleccion_personalSumOrderByAggregateInput

Name Type Nullable
idSeleccion_personal SortOrder No
estado SortOrder No
sector SortOrder No

slot_testTst_idTst_egmCompoundUniqueInput

Name Type Nullable
tst_id Int No
tst_egm Int No

slot_testCountOrderByAggregateInput

Name Type Nullable
tst_id SortOrder No
tst_egm SortOrder No
tst_srl_acept SortOrder No
tst_srl_impr SortOrder No
tst_srl_monit SortOrder No
tst_srl_bckpln SortOrder No
tst_srl_mother SortOrder No
tst_hora_fecha SortOrder No

slot_testAvgOrderByAggregateInput

Name Type Nullable
tst_id SortOrder No
tst_egm SortOrder No

slot_testMaxOrderByAggregateInput

Name Type Nullable
tst_id SortOrder No
tst_egm SortOrder No
tst_srl_acept SortOrder No
tst_srl_impr SortOrder No
tst_srl_monit SortOrder No
tst_srl_bckpln SortOrder No
tst_srl_mother SortOrder No
tst_hora_fecha SortOrder No

slot_testMinOrderByAggregateInput

Name Type Nullable
tst_id SortOrder No
tst_egm SortOrder No
tst_srl_acept SortOrder No
tst_srl_impr SortOrder No
tst_srl_monit SortOrder No
tst_srl_bckpln SortOrder No
tst_srl_mother SortOrder No
tst_hora_fecha SortOrder No

slot_testSumOrderByAggregateInput

Name Type Nullable
tst_id SortOrder No
tst_egm SortOrder No

stock_bejermanCountOrderByAggregateInput

Name Type Nullable
stkart_codgen SortOrder No
skart_codEle1 SortOrder No
skart_codEle2 SortOrder No
skart_codEle3 SortOrder No
deposito SortOrder No
cantidad SortOrder No
f_carga_bejerman SortOrder No
autor SortOrder No
id_stock_bejerman SortOrder No

stock_bejermanAvgOrderByAggregateInput

Name Type Nullable
id_stock_bejerman SortOrder No

stock_bejermanMaxOrderByAggregateInput

Name Type Nullable
stkart_codgen SortOrder No
skart_codEle1 SortOrder No
skart_codEle2 SortOrder No
skart_codEle3 SortOrder No
deposito SortOrder No
cantidad SortOrder No
f_carga_bejerman SortOrder No
autor SortOrder No
id_stock_bejerman SortOrder No

stock_bejermanMinOrderByAggregateInput

Name Type Nullable
stkart_codgen SortOrder No
skart_codEle1 SortOrder No
skart_codEle2 SortOrder No
skart_codEle3 SortOrder No
deposito SortOrder No
cantidad SortOrder No
f_carga_bejerman SortOrder No
autor SortOrder No
id_stock_bejerman SortOrder No

stock_bejermanSumOrderByAggregateInput

Name Type Nullable
id_stock_bejerman SortOrder No

temaCountOrderByAggregateInput

Name Type Nullable
idTema SortOrder No
nombre SortOrder No
estado SortOrder No

temaAvgOrderByAggregateInput

Name Type Nullable
idTema SortOrder No
estado SortOrder No

temaMaxOrderByAggregateInput

Name Type Nullable
idTema SortOrder No
nombre SortOrder No
estado SortOrder No

temaMinOrderByAggregateInput

Name Type Nullable
idTema SortOrder No
nombre SortOrder No
estado SortOrder No

temaSumOrderByAggregateInput

Name Type Nullable
idTema SortOrder No
estado SortOrder No

ticketCountOrderByAggregateInput

Name Type Nullable
idTicket SortOrder No
solicita SortOrder No
idAsignado SortOrder No
referencia SortOrder No
descripcion SortOrder No
prioridad SortOrder No
estado SortOrder No
f_solicitud SortOrder No
f_respuesta SortOrder No
modulo SortOrder No
submodulo SortOrder No
categoria SortOrder No
tipo SortOrder No
f_cierre SortOrder No
f_proceso SortOrder No
f_atencion SortOrder No
sector SortOrder No

ticketAvgOrderByAggregateInput

Name Type Nullable
idTicket SortOrder No
solicita SortOrder No
idAsignado SortOrder No
referencia SortOrder No
sector SortOrder No

ticketMaxOrderByAggregateInput

Name Type Nullable
idTicket SortOrder No
solicita SortOrder No
idAsignado SortOrder No
referencia SortOrder No
descripcion SortOrder No
prioridad SortOrder No
estado SortOrder No
f_solicitud SortOrder No
f_respuesta SortOrder No
modulo SortOrder No
submodulo SortOrder No
categoria SortOrder No
tipo SortOrder No
f_cierre SortOrder No
f_proceso SortOrder No
f_atencion SortOrder No
sector SortOrder No

ticketMinOrderByAggregateInput

Name Type Nullable
idTicket SortOrder No
solicita SortOrder No
idAsignado SortOrder No
referencia SortOrder No
descripcion SortOrder No
prioridad SortOrder No
estado SortOrder No
f_solicitud SortOrder No
f_respuesta SortOrder No
modulo SortOrder No
submodulo SortOrder No
categoria SortOrder No
tipo SortOrder No
f_cierre SortOrder No
f_proceso SortOrder No
f_atencion SortOrder No
sector SortOrder No

ticketSumOrderByAggregateInput

Name Type Nullable
idTicket SortOrder No
solicita SortOrder No
idAsignado SortOrder No
referencia SortOrder No
sector SortOrder No

tituloCountOrderByAggregateInput

Name Type Nullable
idTitulo SortOrder No
nombre SortOrder No
estado SortOrder No

tituloAvgOrderByAggregateInput

Name Type Nullable
idTitulo SortOrder No
estado SortOrder No

tituloMaxOrderByAggregateInput

Name Type Nullable
idTitulo SortOrder No
nombre SortOrder No
estado SortOrder No

tituloMinOrderByAggregateInput

Name Type Nullable
idTitulo SortOrder No
nombre SortOrder No
estado SortOrder No

tituloSumOrderByAggregateInput

Name Type Nullable
idTitulo SortOrder No
estado SortOrder No

uniformeCountOrderByAggregateInput

Name Type Nullable
idUniforme SortOrder No
prenda SortOrder No
tipo_prenda SortOrder No
talle SortOrder No
cantidad SortOrder No
estado SortOrder No

uniformeAvgOrderByAggregateInput

Name Type Nullable
idUniforme SortOrder No
cantidad SortOrder No
estado SortOrder No

uniformeMaxOrderByAggregateInput

Name Type Nullable
idUniforme SortOrder No
prenda SortOrder No
tipo_prenda SortOrder No
talle SortOrder No
cantidad SortOrder No
estado SortOrder No

uniformeMinOrderByAggregateInput

Name Type Nullable
idUniforme SortOrder No
prenda SortOrder No
tipo_prenda SortOrder No
talle SortOrder No
cantidad SortOrder No
estado SortOrder No

uniformeSumOrderByAggregateInput

Name Type Nullable
idUniforme SortOrder No
cantidad SortOrder No
estado SortOrder No

uniforme_has_personaCountOrderByAggregateInput

Name Type Nullable
idUniforme_has_persona SortOrder No
idUniforme SortOrder No
idPersona SortOrder No
f_proceso SortOrder No
detalle SortOrder No
descripcion SortOrder No
usuario SortOrder No
estado SortOrder No

uniforme_has_personaAvgOrderByAggregateInput

Name Type Nullable
idUniforme_has_persona SortOrder No
idPersona SortOrder No
usuario SortOrder No
estado SortOrder No

uniforme_has_personaMaxOrderByAggregateInput

Name Type Nullable
idUniforme_has_persona SortOrder No
idUniforme SortOrder No
idPersona SortOrder No
f_proceso SortOrder No
detalle SortOrder No
descripcion SortOrder No
usuario SortOrder No
estado SortOrder No

uniforme_has_personaMinOrderByAggregateInput

Name Type Nullable
idUniforme_has_persona SortOrder No
idUniforme SortOrder No
idPersona SortOrder No
f_proceso SortOrder No
detalle SortOrder No
descripcion SortOrder No
usuario SortOrder No
estado SortOrder No

uniforme_has_personaSumOrderByAggregateInput

Name Type Nullable
idUniforme_has_persona SortOrder No
idPersona SortOrder No
usuario SortOrder No
estado SortOrder No

BoolFilter

Name Type Nullable
equals Boolean No
not Boolean | NestedBoolFilter No

usuariosCountOrderByAggregateInput

Name Type Nullable
idUsuarios SortOrder No
nombre SortOrder No
usr SortOrder No
email SortOrder No
clave SortOrder No
celular SortOrder No
estado SortOrder No
permisos_id SortOrder No
fecha_registro SortOrder No
legajo SortOrder No

usuariosAvgOrderByAggregateInput

Name Type Nullable
idUsuarios SortOrder No
permisos_id SortOrder No

usuariosMaxOrderByAggregateInput

Name Type Nullable
idUsuarios SortOrder No
nombre SortOrder No
usr SortOrder No
email SortOrder No
clave SortOrder No
celular SortOrder No
estado SortOrder No
permisos_id SortOrder No
fecha_registro SortOrder No
legajo SortOrder No

usuariosMinOrderByAggregateInput

Name Type Nullable
idUsuarios SortOrder No
nombre SortOrder No
usr SortOrder No
email SortOrder No
clave SortOrder No
celular SortOrder No
estado SortOrder No
permisos_id SortOrder No
fecha_registro SortOrder No
legajo SortOrder No

usuariosSumOrderByAggregateInput

Name Type Nullable
idUsuarios SortOrder No
permisos_id SortOrder No

BoolWithAggregatesFilter

Name Type Nullable
equals Boolean No
not Boolean | NestedBoolWithAggregatesFilter No
_count NestedIntFilter No
_min NestedBoolFilter No
_max NestedBoolFilter No

vacuna_personaCountOrderByAggregateInput

Name Type Nullable
idVacunaPersona SortOrder No
idPersona SortOrder No
tipo SortOrder No
dosis SortOrder No
estado SortOrder No
marca SortOrder No
fecha_vacuna SortOrder No
fecha_registro SortOrder No

vacuna_personaAvgOrderByAggregateInput

Name Type Nullable
idVacunaPersona SortOrder No
estado SortOrder No

vacuna_personaMaxOrderByAggregateInput

Name Type Nullable
idVacunaPersona SortOrder No
idPersona SortOrder No
tipo SortOrder No
dosis SortOrder No
estado SortOrder No
marca SortOrder No
fecha_vacuna SortOrder No
fecha_registro SortOrder No

vacuna_personaMinOrderByAggregateInput

Name Type Nullable
idVacunaPersona SortOrder No
idPersona SortOrder No
tipo SortOrder No
dosis SortOrder No
estado SortOrder No
marca SortOrder No
fecha_vacuna SortOrder No
fecha_registro SortOrder No

vacuna_personaSumOrderByAggregateInput

Name Type Nullable
idVacunaPersona SortOrder No
estado SortOrder No

valormenuCountOrderByAggregateInput

Name Type Nullable
idValorMenu SortOrder No
importe_externo SortOrder No
f_registro SortOrder No
usuario SortOrder No
estado SortOrder No
importe_interno SortOrder No

valormenuAvgOrderByAggregateInput

Name Type Nullable
idValorMenu SortOrder No
importe_externo SortOrder No
usuario SortOrder No
estado SortOrder No
importe_interno SortOrder No

valormenuMaxOrderByAggregateInput

Name Type Nullable
idValorMenu SortOrder No
importe_externo SortOrder No
f_registro SortOrder No
usuario SortOrder No
estado SortOrder No
importe_interno SortOrder No

valormenuMinOrderByAggregateInput

Name Type Nullable
idValorMenu SortOrder No
importe_externo SortOrder No
f_registro SortOrder No
usuario SortOrder No
estado SortOrder No
importe_interno SortOrder No

valormenuSumOrderByAggregateInput

Name Type Nullable
idValorMenu SortOrder No
importe_externo SortOrder No
usuario SortOrder No
estado SortOrder No
importe_interno SortOrder No

IntFieldUpdateOperationsInput

Name Type Nullable
set Int No
increment Int No
decrement Int No
multiply Int No
divide Int No

NullableStringFieldUpdateOperationsInput

Name Type Nullable
set String | Null Yes

NullableIntFieldUpdateOperationsInput

Name Type Nullable
set Int | Null Yes
increment Int No
decrement Int No
multiply Int No
divide Int No

NullableDecimalFieldUpdateOperationsInput

Name Type Nullable
set Decimal | Null Yes
increment Decimal No
decrement Decimal No
multiply Decimal No
divide Decimal No

NullableBoolFieldUpdateOperationsInput

Name Type Nullable
set Boolean | Null Yes

NullableDateTimeFieldUpdateOperationsInput

Name Type Nullable
set DateTime | Null Yes

StringFieldUpdateOperationsInput

Name Type Nullable
set String No

DateTimeFieldUpdateOperationsInput

Name Type Nullable
set DateTime No

DecimalFieldUpdateOperationsInput

Name Type Nullable
set Decimal No
increment Decimal No
decrement Decimal No
multiply Decimal No
divide Decimal No

NullableBytesFieldUpdateOperationsInput

Name Type Nullable
set Bytes | Null Yes

BoolFieldUpdateOperationsInput

Name Type Nullable
set Boolean No

NestedIntFilter

Name Type Nullable
equals Int No
in Int No
notIn Int No
lt Int No
lte Int No
gt Int No
gte Int No
not Int | NestedIntFilter No

NestedStringNullableFilter

Name Type Nullable
equals String | Null Yes
in String | Null Yes
notIn String | Null Yes
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
not String | NestedStringNullableFilter | Null Yes

NestedIntWithAggregatesFilter

Name Type Nullable
equals Int No
in Int No
notIn Int No
lt Int No
lte Int No
gt Int No
gte Int No
not Int | NestedIntWithAggregatesFilter No
_count NestedIntFilter No
_avg NestedFloatFilter No
_sum NestedIntFilter No
_min NestedIntFilter No
_max NestedIntFilter No

NestedFloatFilter

Name Type Nullable
equals Float No
in Float No
notIn Float No
lt Float No
lte Float No
gt Float No
gte Float No
not Float | NestedFloatFilter No

NestedStringNullableWithAggregatesFilter

Name Type Nullable
equals String | Null Yes
in String | Null Yes
notIn String | Null Yes
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
not String | NestedStringNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedStringNullableFilter No
_max NestedStringNullableFilter No

NestedIntNullableFilter

Name Type Nullable
equals Int | Null Yes
in Int | Null Yes
notIn Int | Null Yes
lt Int No
lte Int No
gt Int No
gte Int No
not Int | NestedIntNullableFilter | Null Yes

NestedDecimalNullableFilter

Name Type Nullable
equals Decimal | Null Yes
in Decimal[] | Null Yes
notIn Decimal[] | Null Yes
lt Decimal No
lte Decimal No
gt Decimal No
gte Decimal No
not Decimal | NestedDecimalNullableFilter | Null Yes

NestedBoolNullableFilter

Name Type Nullable
equals Boolean | Null Yes
not Boolean | NestedBoolNullableFilter | Null Yes

NestedIntNullableWithAggregatesFilter

Name Type Nullable
equals Int | Null Yes
in Int | Null Yes
notIn Int | Null Yes
lt Int No
lte Int No
gt Int No
gte Int No
not Int | NestedIntNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_avg NestedFloatNullableFilter No
_sum NestedIntNullableFilter No
_min NestedIntNullableFilter No
_max NestedIntNullableFilter No

NestedFloatNullableFilter

Name Type Nullable
equals Float | Null Yes
in Float | Null Yes
notIn Float | Null Yes
lt Float No
lte Float No
gt Float No
gte Float No
not Float | NestedFloatNullableFilter | Null Yes

NestedDecimalNullableWithAggregatesFilter

Name Type Nullable
equals Decimal | Null Yes
in Decimal[] | Null Yes
notIn Decimal[] | Null Yes
lt Decimal No
lte Decimal No
gt Decimal No
gte Decimal No
not Decimal | NestedDecimalNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_avg NestedDecimalNullableFilter No
_sum NestedDecimalNullableFilter No
_min NestedDecimalNullableFilter No
_max NestedDecimalNullableFilter No

NestedBoolNullableWithAggregatesFilter

Name Type Nullable
equals Boolean | Null Yes
not Boolean | NestedBoolNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedBoolNullableFilter No
_max NestedBoolNullableFilter No

NestedDateTimeNullableFilter

Name Type Nullable
equals DateTime | Null Yes
in DateTime | Null Yes
notIn DateTime | Null Yes
lt DateTime No
lte DateTime No
gt DateTime No
gte DateTime No
not DateTime | NestedDateTimeNullableFilter | Null Yes

NestedDateTimeNullableWithAggregatesFilter

Name Type Nullable
equals DateTime | Null Yes
in DateTime | Null Yes
notIn DateTime | Null Yes
lt DateTime No
lte DateTime No
gt DateTime No
gte DateTime No
not DateTime | NestedDateTimeNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedDateTimeNullableFilter No
_max NestedDateTimeNullableFilter No

NestedStringFilter

Name Type Nullable
equals String No
in String No
notIn String No
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
not String | NestedStringFilter No

NestedStringWithAggregatesFilter

Name Type Nullable
equals String No
in String No
notIn String No
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
not String | NestedStringWithAggregatesFilter No
_count NestedIntFilter No
_min NestedStringFilter No
_max NestedStringFilter No

NestedDateTimeFilter

Name Type Nullable
equals DateTime No
in DateTime No
notIn DateTime No
lt DateTime No
lte DateTime No
gt DateTime No
gte DateTime No
not DateTime | NestedDateTimeFilter No

NestedDateTimeWithAggregatesFilter

Name Type Nullable
equals DateTime No
in DateTime No
notIn DateTime No
lt DateTime No
lte DateTime No
gt DateTime No
gte DateTime No
not DateTime | NestedDateTimeWithAggregatesFilter No
_count NestedIntFilter No
_min NestedDateTimeFilter No
_max NestedDateTimeFilter No

NestedDecimalFilter

Name Type Nullable
equals Decimal No
in Decimal[] No
notIn Decimal[] No
lt Decimal No
lte Decimal No
gt Decimal No
gte Decimal No
not Decimal | NestedDecimalFilter No

NestedBytesNullableFilter

Name Type Nullable
equals Bytes | Null Yes
in Bytes[] | Null Yes
notIn Bytes[] | Null Yes
not Bytes | NestedBytesNullableFilter | Null Yes

NestedDecimalWithAggregatesFilter

Name Type Nullable
equals Decimal No
in Decimal[] No
notIn Decimal[] No
lt Decimal No
lte Decimal No
gt Decimal No
gte Decimal No
not Decimal | NestedDecimalWithAggregatesFilter No
_count NestedIntFilter No
_avg NestedDecimalFilter No
_sum NestedDecimalFilter No
_min NestedDecimalFilter No
_max NestedDecimalFilter No

NestedBytesNullableWithAggregatesFilter

Name Type Nullable
equals Bytes | Null Yes
in Bytes[] | Null Yes
notIn Bytes[] | Null Yes
not Bytes | NestedBytesNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedBytesNullableFilter No
_max NestedBytesNullableFilter No

NestedBoolFilter

Name Type Nullable
equals Boolean No
not Boolean | NestedBoolFilter No

NestedBoolWithAggregatesFilter

Name Type Nullable
equals Boolean No
not Boolean | NestedBoolWithAggregatesFilter No
_count NestedIntFilter No
_min NestedBoolFilter No
_max NestedBoolFilter No

Output Types

articulo_deposito_importacion

Name Type Nullable
id_articulo_deposito_importacion Int Yes
cod_deposito String No

articulos

Name Type Nullable
idArticulo Int Yes
nombre String No
categoria Int No
stock Int No
estado Int No
precioCompra Decimal No
precioVenta Decimal No
stockMinimo Int No
entrada Boolean No
salida Boolean No
tipo_modelo String No
descripcion String No
serie String No
codigo String No

articulos_laboratorio

Name Type Nullable
idArticuloLaboratorio Int Yes
articulo Int Yes
maquina Int Yes
cantidad Int Yes
usuario Int No
fecha_hora DateTime No
asignado Int No
estado Int No
reparados Int No

articulos_maquinas

Name Type Nullable
idArticuloMaquina Int Yes
maquina Int Yes
articulo Int Yes
cantidad Int Yes
usuario Int No
fecha_hora DateTime No
estado Int No
fecha_salida DateTime No
usuario_salida Int No

articulos_save

Name Type Nullable
nombre String Yes
tipo_modelo String No

calendariomenu

Name Type Nullable
idCalendarioMenu Int Yes
legajo String No
persona_str String No
title String No
descripcion String No
start DateTime No
color String No
textColor String No
end DateTime No
idMenu Int No
estado Int No
f_registro DateTime No
idMenuBingo Int No
turno String No

calendariomenu_old

Name Type Nullable
idCalendarioMenu Int Yes
legajo String No
title String No
descripcion String No
start DateTime No
color String No
textColor String No
end DateTime No
idMenu Int No
estado Int No
f_registro DateTime No

capacitacion

Name Type Nullable
idCapacitacion Int Yes
descripcion String No
f_inicio DateTime No
f_fin DateTime No
estado Int No
tema String No
f_registro DateTime No
usuario Int No
capacitador String No
cupo Int No
modalidad String No
evaluacion String No
institucion String No
tipo String No
obligatorio String No
sector String No

capacitacion_persona

Name Type Nullable
idCapacitacionPersona Int Yes
idCapacitacion Int Yes
idPersona Int Yes
estado Int Yes
fecha_registro DateTime No
usuario Int No

codificados

Name Type Nullable
gen1 String Yes
atr1 String Yes
atr2 String Yes
atr3 String Yes
gen1desc String No
atr1desc String No
atr2desc String No
atr3desc String No

conexion_bejerman

Name Type Nullable
idConexionBejerman Int Yes
username String No
pass String No
estado Int No
usuario Int No

consola

Name Type Nullable
idConsola Int Yes
usuario Int Yes
accion_id Int Yes
accion String Yes
fecha_registro DateTime Yes
modulo Int Yes

desempeno

Name Type Nullable
idDesempeno Int Yes
idPersona Int Yes
usuario Int Yes
f_registro DateTime Yes
estado Int No
con_tecnico String No
con_operativo String No
precencia_prolijidad String No
puntualidad String No
cumplimiento_modalidad_trabajo String No
vocabulario String No
trabajo_equipo String No
capacidad_organizacion String No
vocacion_servicio String No
capacidad_analisis String No
obs String No
cumplimiento_normas String No

desempeno_evol

Name Type Nullable
idDesempenoEvol Int Yes
idEvaluador Int No
usuario Int No
idPersona Int No
f_desempeno DateTime No
escucha Int No
ayuda_cliente Int No
empatia Int No
comparte_informacion Int No
colabora_pares Int No
trabajo_positivo Int No
cumple_objetivos Int No
acepta_sugerencias Int No
situacion_adversas Int No
asistencia_puntualidad Int No
imagen Int No
limpieza_instalaciones Int No
limpieza_vestuarios Int No
minimiza_perdidas_roturas Int No
objetivos Int No
cumplimientos_sector Int No
estado Int No
conocimientos_sector Int No
obs String No

documentos

Name Type Nullable
idDocumentos Int Yes
documento String No
descripcion String No
file String No
path String No
url String No
fecha DateTime No
categoria String No
tipo String No
size String No
sector Int No
referencia Int No
funcionalidad String No
estado String No

estudio

Name Type Nullable
idEstudio Int Yes
institucion Int No
titulo String No
fecha DateTime No
estado Int No
tipo String No

estudio_persona

Name Type Nullable
idEstudio_persona Int Yes
idEstudio Int No
idPersona Int No
descripcion String No
fecha_registro DateTime No
usuario Int No
estado Int No
estado_str String No
fecha_inicio DateTime No
fecha_finalizacion DateTime No

falla_articulo

Name Type Nullable
idFallasArticulos Int Yes
falla Int Yes
articulo Int Yes

fallas

Name Type Nullable
idFallas Int Yes
descripcion String No
tipo String No
estado Int No
gravedad String No
articulo String No

fallas_maquinas

Name Type Nullable
idFallas_maquinas Int Yes
maquina Int Yes
falla Int Yes
fecha_registro DateTime Yes
estado Int Yes
usuario Int Yes
ticket Int No

familiar

Name Type Nullable
idFamiliar Int Yes
idPersona Int No
parentezco String No
documento String No
estado Int No
nombre String No
tipo_doc String No
telefono String No

fechalimiteprogramado

Name Type Nullable
idFechaLimiteProgramado Int Yes
fecha DateTime No
usuario Int No
estado Int No
f_registro DateTime No

institucion

Name Type Nullable
idInstitucion Int Yes
nombre String No
direccion String No
telefono String No
email String No
web String No
estado Int No

licencia

Name Type Nullable
idLicencia Int Yes
titulo String Yes
descripcion String No
dias Int No
estado Int No

licencia_persona

Name Type Nullable
idLicenciaPersona Int Yes
idLicencia Int Yes
idPersona Int Yes
fecha_registro DateTime Yes
usuario Int Yes
estado Int Yes
descripcion String No
documento String Yes
dias Int Yes
f_inicio DateTime Yes
f_fin DateTime Yes

maquinas

Name Type Nullable
idMaquina Int Yes
nro_egm Int No
fabricante String No
modelo String No
p_pago String No
denom String No
juego String No
nro_serie String No
programa String No
credito String No
estado String No
img String No
ap_minima String No
ap_maxima String No
cant_lineas String No
tipo_juego String No

maquinas_piezas

Name Type Nullable
nro_egm Int Yes
modelo String Yes
tipo_aceptbill String Yes
tipo_impre String Yes
tipo_moni String Yes

menu_personal

Name Type Nullable
idMenuPersonal Int Yes
estado Int No
f_proceso DateTime No
descripcion String No
usuario_carga Int No
fecha_menu DateTime No
tipo_menu String No
valor Decimal No

menu_personal_20190904

Name Type Nullable
idMenuPersonal Int Yes
estado Int No
f_proceso DateTime No
descripcion String No
usuario_carga Int No
fecha_menu DateTime No

menu_personal_old

Name Type Nullable
idMenuPersonal Int Yes
estado Int No
f_proceso DateTime No
descripcion String No
usuario_carga Int No
fecha_menu DateTime No

movimiento_articulo

Name Type Nullable
idMovimiento_articulo Int Yes
articulo Int Yes
cantidad Int Yes
fecha_hora DateTime Yes
movimiento String Yes
usuario Int Yes
locacion String No

novedades

Name Type Nullable
idNovedades Int Yes
texto String No
referencia Int Yes
estado Int Yes
f_proceso DateTime Yes
usuario Int Yes
tipo String Yes

numerico

Name Type Nullable
numericocol Int Yes

parametro_menu

Name Type Nullable
idParametroMenu Int Yes
dia String Yes
tiempo String Yes
cantidad Int Yes
f_proceso DateTime No
usuario_carga Int No
estado Int No

pedido

Name Type Nullable
idPedido Int Yes
idCalendarioMenu Int No
idMenu Int No
usuario Int No
f_registro DateTime No
f_listo DateTime No
estado Int No
persona Int No
legajo String No
persona_str String No
descripcion String No
importe_externo Decimal No
importe_interno Decimal No
idMenuBingo Int No
turno String No

pedido_old

Name Type Nullable
idPedido Int Yes
idCalendarioMenu Int No
idMenu Int No
usuario Int No
f_registro DateTime No
f_listo DateTime No
estado Int No
persona Int No
legajo String No
persona_str String No
descripcion String No

permisos

Name Type Nullable
idPermiso Int Yes
nombre String Yes
permisos String No
estado Boolean No
fecha_registro DateTime No

persona

Name Type Nullable
id Int Yes
nombre String Yes
apellido String Yes
alta DateTime Yes
id_tarjeta Int No
legajo String No
preciohora Decimal Yes
extras Int Yes
id_bioadmin Int No
imagen Bytes No
inc_reportes Int No
eliminado DateTime No
fecha_ingreso DateTime No
contrasena String No
rol Int Yes
direccion String No
dni String No
email String No
cel String No
tel String No
cp String No
vehiculo String No
patente String No
id_provincia Int No
localidad String No
id_calendario Int No
tarjetazk String No
fecha_venc DateTime No
id_sector_por_empresa Int No
remoto_password String No
envio_tarde Int Yes
ultima_fecha_envio_tarde DateTime No
email_trabajo String No
cuil String No
pass_myweb String No
modulos_habilitados String No
IDPHONE String No
ES_VISITA Int No
V_EMPRESA_ORIGEN String No
V_EMPLEADO_VISITA Int No
V_PERTENENCIAS String No
V_NRO_ART String No
V_MOTIVO_VISITA String No
V_VENCIDO Int No
FECHA_NACIMIENTO DateTime No
PUESTO_TRABAJO String No

premio

Name Type Nullable
idPremio Int Yes
nombre String No
descripcion String No
img String No
estado Int No
f_premio DateTime No
f_proceso DateTime No
tipo String No
mes_cumplido Int No

premio_persona

Name Type Nullable
idPremioPersona Int Yes
idPremio Int Yes
idPersona Int Yes
descripcion String No
fecha_entrega DateTime No
tipo String No
estado Int Yes
usuario Int Yes
fecha_registro DateTime Yes

sala

Name Type Nullable
idSala Int Yes
title String No
descripcion String No
color String No
textColor String No
start String No
end String No
estado Int No
f_creacion DateTime No
usuario Int No

sala_copy

Name Type Nullable
idSala Int Yes
title String No
descripcion String No
color String No
textColor String No
start DateTime No
end DateTime No
estado Int No
f_creacion DateTime No
usuario Int No

sector

Name Type Nullable
idSector Int Yes
nombre String No
estado Int No

seleccion_personal

Name Type Nullable
idSeleccion_personal Int Yes
nombre String No
apellido String No
domicilio String No
contacto String No
fuente_reclutamiento String No
descripcion String No
estado Int No
f_proceso DateTime No
meta_estado String No
fecha_meta_estado DateTime No
sector Int No

slot_test

Name Type Nullable
tst_id Int Yes
tst_egm Int Yes
tst_srl_acept String Yes
tst_srl_impr String Yes
tst_srl_monit String Yes
tst_srl_bckpln String Yes
tst_srl_mother String Yes
tst_hora_fecha DateTime Yes

stock_bejerman

Name Type Nullable
stkart_codgen String No
skart_codEle1 String No
skart_codEle2 String No
skart_codEle3 String No
deposito String No
cantidad String No
f_carga_bejerman String No
autor String No
id_stock_bejerman Int Yes

tema

Name Type Nullable
idTema Int Yes
nombre String No
estado Int No

ticket

Name Type Nullable
idTicket Int Yes
solicita Int Yes
idAsignado Int Yes
referencia Int Yes
descripcion String No
prioridad String No
estado Boolean No
f_solicitud DateTime No
f_respuesta DateTime No
modulo String No
submodulo String No
categoria String No
tipo String No
f_cierre DateTime Yes
f_proceso DateTime Yes
f_atencion DateTime Yes
sector Int No

titulo

Name Type Nullable
idTitulo Int Yes
nombre String No
estado Int No

uniforme

Name Type Nullable
idUniforme Int Yes
prenda String No
tipo_prenda String No
talle String No
cantidad Int No
estado Int No

uniforme_has_persona

Name Type Nullable
idUniforme_has_persona Int Yes
idUniforme String Yes
idPersona Int Yes
f_proceso DateTime No
detalle String No
descripcion String No
usuario Int No
estado Int No

usuarios

Name Type Nullable
idUsuarios Int Yes
nombre String Yes
usr String Yes
email String Yes
clave String Yes
celular String No
estado Boolean Yes
permisos_id Int Yes
fecha_registro DateTime Yes
legajo String No

vacuna_persona

Name Type Nullable
idVacunaPersona Int Yes
idPersona String Yes
tipo String No
dosis String No
estado Int No
marca String No
fecha_vacuna DateTime No
fecha_registro DateTime No

valormenu

Name Type Nullable
idValorMenu Int Yes
importe_externo Decimal No
f_registro DateTime No
usuario Int No
estado Int No
importe_interno Decimal No


Articulo_deposito_importacionGroupByOutputType

Name Type Nullable
id_articulo_deposito_importacion Int Yes
cod_deposito String No
_count Articulo_deposito_importacionCountAggregateOutputType No
_avg Articulo_deposito_importacionAvgAggregateOutputType No
_sum Articulo_deposito_importacionSumAggregateOutputType No
_min Articulo_deposito_importacionMinAggregateOutputType No
_max Articulo_deposito_importacionMaxAggregateOutputType No


ArticulosGroupByOutputType

Name Type Nullable
idArticulo Int Yes
nombre String No
categoria Int No
stock Int No
estado Int No
precioCompra Decimal No
precioVenta Decimal No
stockMinimo Int No
entrada Boolean No
salida Boolean No
tipo_modelo String No
descripcion String No
serie String No
codigo String No
_count ArticulosCountAggregateOutputType No
_avg ArticulosAvgAggregateOutputType No
_sum ArticulosSumAggregateOutputType No
_min ArticulosMinAggregateOutputType No
_max ArticulosMaxAggregateOutputType No


Articulos_laboratorioGroupByOutputType

Name Type Nullable
idArticuloLaboratorio Int Yes
articulo Int Yes
maquina Int Yes
cantidad Int Yes
usuario Int No
fecha_hora DateTime No
asignado Int No
estado Int No
reparados Int No
_count Articulos_laboratorioCountAggregateOutputType No
_avg Articulos_laboratorioAvgAggregateOutputType No
_sum Articulos_laboratorioSumAggregateOutputType No
_min Articulos_laboratorioMinAggregateOutputType No
_max Articulos_laboratorioMaxAggregateOutputType No


Articulos_maquinasGroupByOutputType

Name Type Nullable
idArticuloMaquina Int Yes
maquina Int Yes
articulo Int Yes
cantidad Int Yes
usuario Int No
fecha_hora DateTime No
estado Int No
fecha_salida DateTime No
usuario_salida Int No
_count Articulos_maquinasCountAggregateOutputType No
_avg Articulos_maquinasAvgAggregateOutputType No
_sum Articulos_maquinasSumAggregateOutputType No
_min Articulos_maquinasMinAggregateOutputType No
_max Articulos_maquinasMaxAggregateOutputType No


Articulos_saveGroupByOutputType

Name Type Nullable
nombre String Yes
tipo_modelo String No
_count Articulos_saveCountAggregateOutputType No
_min Articulos_saveMinAggregateOutputType No
_max Articulos_saveMaxAggregateOutputType No


CalendariomenuGroupByOutputType

Name Type Nullable
idCalendarioMenu Int Yes
legajo String No
persona_str String No
title String No
descripcion String No
start DateTime No
color String No
textColor String No
end DateTime No
idMenu Int No
estado Int No
f_registro DateTime No
idMenuBingo Int No
turno String No
_count CalendariomenuCountAggregateOutputType No
_avg CalendariomenuAvgAggregateOutputType No
_sum CalendariomenuSumAggregateOutputType No
_min CalendariomenuMinAggregateOutputType No
_max CalendariomenuMaxAggregateOutputType No


Calendariomenu_oldGroupByOutputType

Name Type Nullable
idCalendarioMenu Int Yes
legajo String No
title String No
descripcion String No
start DateTime No
color String No
textColor String No
end DateTime No
idMenu Int No
estado Int No
f_registro DateTime No
_count Calendariomenu_oldCountAggregateOutputType No
_avg Calendariomenu_oldAvgAggregateOutputType No
_sum Calendariomenu_oldSumAggregateOutputType No
_min Calendariomenu_oldMinAggregateOutputType No
_max Calendariomenu_oldMaxAggregateOutputType No


CapacitacionGroupByOutputType

Name Type Nullable
idCapacitacion Int Yes
descripcion String No
f_inicio DateTime No
f_fin DateTime No
estado Int No
tema String No
f_registro DateTime No
usuario Int No
capacitador String No
cupo Int No
modalidad String No
evaluacion String No
institucion String No
tipo String No
obligatorio String No
sector String No
_count CapacitacionCountAggregateOutputType No
_avg CapacitacionAvgAggregateOutputType No
_sum CapacitacionSumAggregateOutputType No
_min CapacitacionMinAggregateOutputType No
_max CapacitacionMaxAggregateOutputType No


Capacitacion_personaGroupByOutputType

Name Type Nullable
idCapacitacionPersona Int Yes
idCapacitacion Int Yes
idPersona Int Yes
estado Int Yes
fecha_registro DateTime No
usuario Int No
_count Capacitacion_personaCountAggregateOutputType No
_avg Capacitacion_personaAvgAggregateOutputType No
_sum Capacitacion_personaSumAggregateOutputType No
_min Capacitacion_personaMinAggregateOutputType No
_max Capacitacion_personaMaxAggregateOutputType No

AggregateCodificados

Name Type Nullable
_count CodificadosCountAggregateOutputType No
_min CodificadosMinAggregateOutputType No
_max CodificadosMaxAggregateOutputType No

CodificadosGroupByOutputType

Name Type Nullable
gen1 String Yes
atr1 String Yes
atr2 String Yes
atr3 String Yes
gen1desc String No
atr1desc String No
atr2desc String No
atr3desc String No
_count CodificadosCountAggregateOutputType No
_min CodificadosMinAggregateOutputType No
_max CodificadosMaxAggregateOutputType No


Conexion_bejermanGroupByOutputType

Name Type Nullable
idConexionBejerman Int Yes
username String No
pass String No
estado Int No
usuario Int No
_count Conexion_bejermanCountAggregateOutputType No
_avg Conexion_bejermanAvgAggregateOutputType No
_sum Conexion_bejermanSumAggregateOutputType No
_min Conexion_bejermanMinAggregateOutputType No
_max Conexion_bejermanMaxAggregateOutputType No


ConsolaGroupByOutputType

Name Type Nullable
idConsola Int Yes
usuario Int Yes
accion_id Int Yes
accion String Yes
fecha_registro DateTime Yes
modulo Int Yes
_count ConsolaCountAggregateOutputType No
_avg ConsolaAvgAggregateOutputType No
_sum ConsolaSumAggregateOutputType No
_min ConsolaMinAggregateOutputType No
_max ConsolaMaxAggregateOutputType No


DesempenoGroupByOutputType

Name Type Nullable
idDesempeno Int Yes
idPersona Int Yes
usuario Int Yes
f_registro DateTime Yes
estado Int No
con_tecnico String No
con_operativo String No
precencia_prolijidad String No
puntualidad String No
cumplimiento_modalidad_trabajo String No
vocabulario String No
trabajo_equipo String No
capacidad_organizacion String No
vocacion_servicio String No
capacidad_analisis String No
obs String No
cumplimiento_normas String No
_count DesempenoCountAggregateOutputType No
_avg DesempenoAvgAggregateOutputType No
_sum DesempenoSumAggregateOutputType No
_min DesempenoMinAggregateOutputType No
_max DesempenoMaxAggregateOutputType No


Desempeno_evolGroupByOutputType

Name Type Nullable
idDesempenoEvol Int Yes
idEvaluador Int No
usuario Int No
idPersona Int No
f_desempeno DateTime No
escucha Int No
ayuda_cliente Int No
empatia Int No
comparte_informacion Int No
colabora_pares Int No
trabajo_positivo Int No
cumple_objetivos Int No
acepta_sugerencias Int No
situacion_adversas Int No
asistencia_puntualidad Int No
imagen Int No
limpieza_instalaciones Int No
limpieza_vestuarios Int No
minimiza_perdidas_roturas Int No
objetivos Int No
cumplimientos_sector Int No
estado Int No
conocimientos_sector Int No
obs String No
_count Desempeno_evolCountAggregateOutputType No
_avg Desempeno_evolAvgAggregateOutputType No
_sum Desempeno_evolSumAggregateOutputType No
_min Desempeno_evolMinAggregateOutputType No
_max Desempeno_evolMaxAggregateOutputType No


DocumentosGroupByOutputType

Name Type Nullable
idDocumentos Int Yes
documento String No
descripcion String No
file String No
path String No
url String No
fecha DateTime No
categoria String No
tipo String No
size String No
sector Int No
referencia Int No
funcionalidad String No
estado String No
_count DocumentosCountAggregateOutputType No
_avg DocumentosAvgAggregateOutputType No
_sum DocumentosSumAggregateOutputType No
_min DocumentosMinAggregateOutputType No
_max DocumentosMaxAggregateOutputType No


EstudioGroupByOutputType

Name Type Nullable
idEstudio Int Yes
institucion Int No
titulo String No
fecha DateTime No
estado Int No
tipo String No
_count EstudioCountAggregateOutputType No
_avg EstudioAvgAggregateOutputType No
_sum EstudioSumAggregateOutputType No
_min EstudioMinAggregateOutputType No
_max EstudioMaxAggregateOutputType No


Estudio_personaGroupByOutputType

Name Type Nullable
idEstudio_persona Int Yes
idEstudio Int No
idPersona Int No
descripcion String No
fecha_registro DateTime No
usuario Int No
estado Int No
estado_str String No
fecha_inicio DateTime No
fecha_finalizacion DateTime No
_count Estudio_personaCountAggregateOutputType No
_avg Estudio_personaAvgAggregateOutputType No
_sum Estudio_personaSumAggregateOutputType No
_min Estudio_personaMinAggregateOutputType No
_max Estudio_personaMaxAggregateOutputType No


Falla_articuloGroupByOutputType

Name Type Nullable
idFallasArticulos Int Yes
falla Int Yes
articulo Int Yes
_count Falla_articuloCountAggregateOutputType No
_avg Falla_articuloAvgAggregateOutputType No
_sum Falla_articuloSumAggregateOutputType No
_min Falla_articuloMinAggregateOutputType No
_max Falla_articuloMaxAggregateOutputType No


FallasGroupByOutputType

Name Type Nullable
idFallas Int Yes
descripcion String No
tipo String No
estado Int No
gravedad String No
articulo String No
_count FallasCountAggregateOutputType No
_avg FallasAvgAggregateOutputType No
_sum FallasSumAggregateOutputType No
_min FallasMinAggregateOutputType No
_max FallasMaxAggregateOutputType No


Fallas_maquinasGroupByOutputType

Name Type Nullable
idFallas_maquinas Int Yes
maquina Int Yes
falla Int Yes
fecha_registro DateTime Yes
estado Int Yes
usuario Int Yes
ticket Int No
_count Fallas_maquinasCountAggregateOutputType No
_avg Fallas_maquinasAvgAggregateOutputType No
_sum Fallas_maquinasSumAggregateOutputType No
_min Fallas_maquinasMinAggregateOutputType No
_max Fallas_maquinasMaxAggregateOutputType No


FamiliarGroupByOutputType

Name Type Nullable
idFamiliar Int Yes
idPersona Int No
parentezco String No
documento String No
estado Int No
nombre String No
tipo_doc String No
telefono String No
_count FamiliarCountAggregateOutputType No
_avg FamiliarAvgAggregateOutputType No
_sum FamiliarSumAggregateOutputType No
_min FamiliarMinAggregateOutputType No
_max FamiliarMaxAggregateOutputType No


FechalimiteprogramadoGroupByOutputType

Name Type Nullable
idFechaLimiteProgramado Int Yes
fecha DateTime No
usuario Int No
estado Int No
f_registro DateTime No
_count FechalimiteprogramadoCountAggregateOutputType No
_avg FechalimiteprogramadoAvgAggregateOutputType No
_sum FechalimiteprogramadoSumAggregateOutputType No
_min FechalimiteprogramadoMinAggregateOutputType No
_max FechalimiteprogramadoMaxAggregateOutputType No


InstitucionGroupByOutputType

Name Type Nullable
idInstitucion Int Yes
nombre String No
direccion String No
telefono String No
email String No
web String No
estado Int No
_count InstitucionCountAggregateOutputType No
_avg InstitucionAvgAggregateOutputType No
_sum InstitucionSumAggregateOutputType No
_min InstitucionMinAggregateOutputType No
_max InstitucionMaxAggregateOutputType No


LicenciaGroupByOutputType

Name Type Nullable
idLicencia Int Yes
titulo String Yes
descripcion String No
dias Int No
estado Int No
_count LicenciaCountAggregateOutputType No
_avg LicenciaAvgAggregateOutputType No
_sum LicenciaSumAggregateOutputType No
_min LicenciaMinAggregateOutputType No
_max LicenciaMaxAggregateOutputType No


Licencia_personaGroupByOutputType

Name Type Nullable
idLicenciaPersona Int Yes
idLicencia Int Yes
idPersona Int Yes
fecha_registro DateTime Yes
usuario Int Yes
estado Int Yes
descripcion String No
documento String Yes
dias Int Yes
f_inicio DateTime Yes
f_fin DateTime Yes
_count Licencia_personaCountAggregateOutputType No
_avg Licencia_personaAvgAggregateOutputType No
_sum Licencia_personaSumAggregateOutputType No
_min Licencia_personaMinAggregateOutputType No
_max Licencia_personaMaxAggregateOutputType No


MaquinasGroupByOutputType

Name Type Nullable
idMaquina Int Yes
nro_egm Int No
fabricante String No
modelo String No
p_pago String No
denom String No
juego String No
nro_serie String No
programa String No
credito String No
estado String No
img String No
ap_minima String No
ap_maxima String No
cant_lineas String No
tipo_juego String No
_count MaquinasCountAggregateOutputType No
_avg MaquinasAvgAggregateOutputType No
_sum MaquinasSumAggregateOutputType No
_min MaquinasMinAggregateOutputType No
_max MaquinasMaxAggregateOutputType No


Maquinas_piezasGroupByOutputType

Name Type Nullable
nro_egm Int Yes
modelo String Yes
tipo_aceptbill String Yes
tipo_impre String Yes
tipo_moni String Yes
_count Maquinas_piezasCountAggregateOutputType No
_avg Maquinas_piezasAvgAggregateOutputType No
_sum Maquinas_piezasSumAggregateOutputType No
_min Maquinas_piezasMinAggregateOutputType No
_max Maquinas_piezasMaxAggregateOutputType No


Menu_personalGroupByOutputType

Name Type Nullable
idMenuPersonal Int Yes
estado Int No
f_proceso DateTime No
descripcion String No
usuario_carga Int No
fecha_menu DateTime No
tipo_menu String No
valor Decimal No
_count Menu_personalCountAggregateOutputType No
_avg Menu_personalAvgAggregateOutputType No
_sum Menu_personalSumAggregateOutputType No
_min Menu_personalMinAggregateOutputType No
_max Menu_personalMaxAggregateOutputType No


Menu_personal_20190904GroupByOutputType

Name Type Nullable
idMenuPersonal Int Yes
estado Int No
f_proceso DateTime No
descripcion String No
usuario_carga Int No
fecha_menu DateTime No
_count Menu_personal_20190904CountAggregateOutputType No
_avg Menu_personal_20190904AvgAggregateOutputType No
_sum Menu_personal_20190904SumAggregateOutputType No
_min Menu_personal_20190904MinAggregateOutputType No
_max Menu_personal_20190904MaxAggregateOutputType No


Menu_personal_oldGroupByOutputType

Name Type Nullable
idMenuPersonal Int Yes
estado Int No
f_proceso DateTime No
descripcion String No
usuario_carga Int No
fecha_menu DateTime No
_count Menu_personal_oldCountAggregateOutputType No
_avg Menu_personal_oldAvgAggregateOutputType No
_sum Menu_personal_oldSumAggregateOutputType No
_min Menu_personal_oldMinAggregateOutputType No
_max Menu_personal_oldMaxAggregateOutputType No


Movimiento_articuloGroupByOutputType

Name Type Nullable
idMovimiento_articulo Int Yes
articulo Int Yes
cantidad Int Yes
fecha_hora DateTime Yes
movimiento String Yes
usuario Int Yes
locacion String No
_count Movimiento_articuloCountAggregateOutputType No
_avg Movimiento_articuloAvgAggregateOutputType No
_sum Movimiento_articuloSumAggregateOutputType No
_min Movimiento_articuloMinAggregateOutputType No
_max Movimiento_articuloMaxAggregateOutputType No


NovedadesGroupByOutputType

Name Type Nullable
idNovedades Int Yes
texto String No
referencia Int Yes
estado Int Yes
f_proceso DateTime Yes
usuario Int Yes
tipo String Yes
_count NovedadesCountAggregateOutputType No
_avg NovedadesAvgAggregateOutputType No
_sum NovedadesSumAggregateOutputType No
_min NovedadesMinAggregateOutputType No
_max NovedadesMaxAggregateOutputType No


NumericoGroupByOutputType

Name Type Nullable
numericocol Int Yes
_count NumericoCountAggregateOutputType No
_avg NumericoAvgAggregateOutputType No
_sum NumericoSumAggregateOutputType No
_min NumericoMinAggregateOutputType No
_max NumericoMaxAggregateOutputType No


Parametro_menuGroupByOutputType

Name Type Nullable
idParametroMenu Int Yes
dia String Yes
tiempo String Yes
cantidad Int Yes
f_proceso DateTime No
usuario_carga Int No
estado Int No
_count Parametro_menuCountAggregateOutputType No
_avg Parametro_menuAvgAggregateOutputType No
_sum Parametro_menuSumAggregateOutputType No
_min Parametro_menuMinAggregateOutputType No
_max Parametro_menuMaxAggregateOutputType No


PedidoGroupByOutputType

Name Type Nullable
idPedido Int Yes
idCalendarioMenu Int No
idMenu Int No
usuario Int No
f_registro DateTime No
f_listo DateTime No
estado Int No
persona Int No
legajo String No
persona_str String No
descripcion String No
importe_externo Decimal No
importe_interno Decimal No
idMenuBingo Int No
turno String No
_count PedidoCountAggregateOutputType No
_avg PedidoAvgAggregateOutputType No
_sum PedidoSumAggregateOutputType No
_min PedidoMinAggregateOutputType No
_max PedidoMaxAggregateOutputType No


Pedido_oldGroupByOutputType

Name Type Nullable
idPedido Int Yes
idCalendarioMenu Int No
idMenu Int No
usuario Int No
f_registro DateTime No
f_listo DateTime No
estado Int No
persona Int No
legajo String No
persona_str String No
descripcion String No
_count Pedido_oldCountAggregateOutputType No
_avg Pedido_oldAvgAggregateOutputType No
_sum Pedido_oldSumAggregateOutputType No
_min Pedido_oldMinAggregateOutputType No
_max Pedido_oldMaxAggregateOutputType No


PermisosGroupByOutputType

Name Type Nullable
idPermiso Int Yes
nombre String Yes
permisos String No
estado Boolean No
fecha_registro DateTime No
_count PermisosCountAggregateOutputType No
_avg PermisosAvgAggregateOutputType No
_sum PermisosSumAggregateOutputType No
_min PermisosMinAggregateOutputType No
_max PermisosMaxAggregateOutputType No


PersonaGroupByOutputType

Name Type Nullable
id Int Yes
nombre String Yes
apellido String Yes
alta DateTime Yes
id_tarjeta Int No
legajo String No
preciohora Decimal Yes
extras Int Yes
id_bioadmin Int No
imagen Bytes No
inc_reportes Int No
eliminado DateTime No
fecha_ingreso DateTime No
contrasena String No
rol Int Yes
direccion String No
dni String No
email String No
cel String No
tel String No
cp String No
vehiculo String No
patente String No
id_provincia Int No
localidad String No
id_calendario Int No
tarjetazk String No
fecha_venc DateTime No
id_sector_por_empresa Int No
remoto_password String No
envio_tarde Int Yes
ultima_fecha_envio_tarde DateTime No
email_trabajo String No
cuil String No
pass_myweb String No
modulos_habilitados String No
IDPHONE String No
ES_VISITA Int No
V_EMPRESA_ORIGEN String No
V_EMPLEADO_VISITA Int No
V_PERTENENCIAS String No
V_NRO_ART String No
V_MOTIVO_VISITA String No
V_VENCIDO Int No
FECHA_NACIMIENTO DateTime No
PUESTO_TRABAJO String No
_count PersonaCountAggregateOutputType No
_avg PersonaAvgAggregateOutputType No
_sum PersonaSumAggregateOutputType No
_min PersonaMinAggregateOutputType No
_max PersonaMaxAggregateOutputType No


PremioGroupByOutputType

Name Type Nullable
idPremio Int Yes
nombre String No
descripcion String No
img String No
estado Int No
f_premio DateTime No
f_proceso DateTime No
tipo String No
mes_cumplido Int No
_count PremioCountAggregateOutputType No
_avg PremioAvgAggregateOutputType No
_sum PremioSumAggregateOutputType No
_min PremioMinAggregateOutputType No
_max PremioMaxAggregateOutputType No


Premio_personaGroupByOutputType

Name Type Nullable
idPremioPersona Int Yes
idPremio Int Yes
idPersona Int Yes
descripcion String No
fecha_entrega DateTime No
tipo String No
estado Int Yes
usuario Int Yes
fecha_registro DateTime Yes
_count Premio_personaCountAggregateOutputType No
_avg Premio_personaAvgAggregateOutputType No
_sum Premio_personaSumAggregateOutputType No
_min Premio_personaMinAggregateOutputType No
_max Premio_personaMaxAggregateOutputType No


SalaGroupByOutputType

Name Type Nullable
idSala Int Yes
title String No
descripcion String No
color String No
textColor String No
start String No
end String No
estado Int No
f_creacion DateTime No
usuario Int No
_count SalaCountAggregateOutputType No
_avg SalaAvgAggregateOutputType No
_sum SalaSumAggregateOutputType No
_min SalaMinAggregateOutputType No
_max SalaMaxAggregateOutputType No


Sala_copyGroupByOutputType

Name Type Nullable
idSala Int Yes
title String No
descripcion String No
color String No
textColor String No
start DateTime No
end DateTime No
estado Int No
f_creacion DateTime No
usuario Int No
_count Sala_copyCountAggregateOutputType No
_avg Sala_copyAvgAggregateOutputType No
_sum Sala_copySumAggregateOutputType No
_min Sala_copyMinAggregateOutputType No
_max Sala_copyMaxAggregateOutputType No


SectorGroupByOutputType

Name Type Nullable
idSector Int Yes
nombre String No
estado Int No
_count SectorCountAggregateOutputType No
_avg SectorAvgAggregateOutputType No
_sum SectorSumAggregateOutputType No
_min SectorMinAggregateOutputType No
_max SectorMaxAggregateOutputType No


Seleccion_personalGroupByOutputType

Name Type Nullable
idSeleccion_personal Int Yes
nombre String No
apellido String No
domicilio String No
contacto String No
fuente_reclutamiento String No
descripcion String No
estado Int No
f_proceso DateTime No
meta_estado String No
fecha_meta_estado DateTime No
sector Int No
_count Seleccion_personalCountAggregateOutputType No
_avg Seleccion_personalAvgAggregateOutputType No
_sum Seleccion_personalSumAggregateOutputType No
_min Seleccion_personalMinAggregateOutputType No
_max Seleccion_personalMaxAggregateOutputType No


Slot_testGroupByOutputType

Name Type Nullable
tst_id Int Yes
tst_egm Int Yes
tst_srl_acept String Yes
tst_srl_impr String Yes
tst_srl_monit String Yes
tst_srl_bckpln String Yes
tst_srl_mother String Yes
tst_hora_fecha DateTime Yes
_count Slot_testCountAggregateOutputType No
_avg Slot_testAvgAggregateOutputType No
_sum Slot_testSumAggregateOutputType No
_min Slot_testMinAggregateOutputType No
_max Slot_testMaxAggregateOutputType No


Stock_bejermanGroupByOutputType

Name Type Nullable
stkart_codgen String No
skart_codEle1 String No
skart_codEle2 String No
skart_codEle3 String No
deposito String No
cantidad String No
f_carga_bejerman String No
autor String No
id_stock_bejerman Int Yes
_count Stock_bejermanCountAggregateOutputType No
_avg Stock_bejermanAvgAggregateOutputType No
_sum Stock_bejermanSumAggregateOutputType No
_min Stock_bejermanMinAggregateOutputType No
_max Stock_bejermanMaxAggregateOutputType No


TemaGroupByOutputType

Name Type Nullable
idTema Int Yes
nombre String No
estado Int No
_count TemaCountAggregateOutputType No
_avg TemaAvgAggregateOutputType No
_sum TemaSumAggregateOutputType No
_min TemaMinAggregateOutputType No
_max TemaMaxAggregateOutputType No


TicketGroupByOutputType

Name Type Nullable
idTicket Int Yes
solicita Int Yes
idAsignado Int Yes
referencia Int Yes
descripcion String No
prioridad String No
estado Boolean No
f_solicitud DateTime No
f_respuesta DateTime No
modulo String No
submodulo String No
categoria String No
tipo String No
f_cierre DateTime Yes
f_proceso DateTime Yes
f_atencion DateTime Yes
sector Int No
_count TicketCountAggregateOutputType No
_avg TicketAvgAggregateOutputType No
_sum TicketSumAggregateOutputType No
_min TicketMinAggregateOutputType No
_max TicketMaxAggregateOutputType No


TituloGroupByOutputType

Name Type Nullable
idTitulo Int Yes
nombre String No
estado Int No
_count TituloCountAggregateOutputType No
_avg TituloAvgAggregateOutputType No
_sum TituloSumAggregateOutputType No
_min TituloMinAggregateOutputType No
_max TituloMaxAggregateOutputType No


UniformeGroupByOutputType

Name Type Nullable
idUniforme Int Yes
prenda String No
tipo_prenda String No
talle String No
cantidad Int No
estado Int No
_count UniformeCountAggregateOutputType No
_avg UniformeAvgAggregateOutputType No
_sum UniformeSumAggregateOutputType No
_min UniformeMinAggregateOutputType No
_max UniformeMaxAggregateOutputType No


Uniforme_has_personaGroupByOutputType

Name Type Nullable
idUniforme_has_persona Int Yes
idUniforme String Yes
idPersona Int Yes
f_proceso DateTime No
detalle String No
descripcion String No
usuario Int No
estado Int No
_count Uniforme_has_personaCountAggregateOutputType No
_avg Uniforme_has_personaAvgAggregateOutputType No
_sum Uniforme_has_personaSumAggregateOutputType No
_min Uniforme_has_personaMinAggregateOutputType No
_max Uniforme_has_personaMaxAggregateOutputType No


UsuariosGroupByOutputType

Name Type Nullable
idUsuarios Int Yes
nombre String Yes
usr String Yes
email String Yes
clave String Yes
celular String No
estado Boolean Yes
permisos_id Int Yes
fecha_registro DateTime Yes
legajo String No
_count UsuariosCountAggregateOutputType No
_avg UsuariosAvgAggregateOutputType No
_sum UsuariosSumAggregateOutputType No
_min UsuariosMinAggregateOutputType No
_max UsuariosMaxAggregateOutputType No


Vacuna_personaGroupByOutputType

Name Type Nullable
idVacunaPersona Int Yes
idPersona String Yes
tipo String No
dosis String No
estado Int No
marca String No
fecha_vacuna DateTime No
fecha_registro DateTime No
_count Vacuna_personaCountAggregateOutputType No
_avg Vacuna_personaAvgAggregateOutputType No
_sum Vacuna_personaSumAggregateOutputType No
_min Vacuna_personaMinAggregateOutputType No
_max Vacuna_personaMaxAggregateOutputType No


ValormenuGroupByOutputType

Name Type Nullable
idValorMenu Int Yes
importe_externo Decimal No
f_registro DateTime No
usuario Int No
estado Int No
importe_interno Decimal No
_count ValormenuCountAggregateOutputType No
_avg ValormenuAvgAggregateOutputType No
_sum ValormenuSumAggregateOutputType No
_min ValormenuMinAggregateOutputType No
_max ValormenuMaxAggregateOutputType No

AffectedRowsOutput

Name Type Nullable
count Int Yes

Articulo_deposito_importacionCountAggregateOutputType

Name Type Nullable
id_articulo_deposito_importacion Int Yes
cod_deposito Int Yes
_all Int Yes

Articulo_deposito_importacionAvgAggregateOutputType

Name Type Nullable
id_articulo_deposito_importacion Float No

Articulo_deposito_importacionSumAggregateOutputType

Name Type Nullable
id_articulo_deposito_importacion Int No

Articulo_deposito_importacionMinAggregateOutputType

Name Type Nullable
id_articulo_deposito_importacion Int No
cod_deposito String No

Articulo_deposito_importacionMaxAggregateOutputType

Name Type Nullable
id_articulo_deposito_importacion Int No
cod_deposito String No

ArticulosCountAggregateOutputType

Name Type Nullable
idArticulo Int Yes
nombre Int Yes
categoria Int Yes
stock Int Yes
estado Int Yes
precioCompra Int Yes
precioVenta Int Yes
stockMinimo Int Yes
entrada Int Yes
salida Int Yes
tipo_modelo Int Yes
descripcion Int Yes
serie Int Yes
codigo Int Yes
_all Int Yes

ArticulosAvgAggregateOutputType

Name Type Nullable
idArticulo Float No
categoria Float No
stock Float No
estado Float No
precioCompra Decimal No
precioVenta Decimal No
stockMinimo Float No

ArticulosSumAggregateOutputType

Name Type Nullable
idArticulo Int No
categoria Int No
stock Int No
estado Int No
precioCompra Decimal No
precioVenta Decimal No
stockMinimo Int No

ArticulosMinAggregateOutputType

Name Type Nullable
idArticulo Int No
nombre String No
categoria Int No
stock Int No
estado Int No
precioCompra Decimal No
precioVenta Decimal No
stockMinimo Int No
entrada Boolean No
salida Boolean No
tipo_modelo String No
descripcion String No
serie String No
codigo String No

ArticulosMaxAggregateOutputType

Name Type Nullable
idArticulo Int No
nombre String No
categoria Int No
stock Int No
estado Int No
precioCompra Decimal No
precioVenta Decimal No
stockMinimo Int No
entrada Boolean No
salida Boolean No
tipo_modelo String No
descripcion String No
serie String No
codigo String No

Articulos_laboratorioCountAggregateOutputType

Name Type Nullable
idArticuloLaboratorio Int Yes
articulo Int Yes
maquina Int Yes
cantidad Int Yes
usuario Int Yes
fecha_hora Int Yes
asignado Int Yes
estado Int Yes
reparados Int Yes
_all Int Yes

Articulos_laboratorioAvgAggregateOutputType

Name Type Nullable
idArticuloLaboratorio Float No
articulo Float No
maquina Float No
cantidad Float No
usuario Float No
asignado Float No
estado Float No
reparados Float No

Articulos_laboratorioSumAggregateOutputType

Name Type Nullable
idArticuloLaboratorio Int No
articulo Int No
maquina Int No
cantidad Int No
usuario Int No
asignado Int No
estado Int No
reparados Int No

Articulos_laboratorioMinAggregateOutputType

Name Type Nullable
idArticuloLaboratorio Int No
articulo Int No
maquina Int No
cantidad Int No
usuario Int No
fecha_hora DateTime No
asignado Int No
estado Int No
reparados Int No

Articulos_laboratorioMaxAggregateOutputType

Name Type Nullable
idArticuloLaboratorio Int No
articulo Int No
maquina Int No
cantidad Int No
usuario Int No
fecha_hora DateTime No
asignado Int No
estado Int No
reparados Int No

Articulos_maquinasCountAggregateOutputType

Name Type Nullable
idArticuloMaquina Int Yes
maquina Int Yes
articulo Int Yes
cantidad Int Yes
usuario Int Yes
fecha_hora Int Yes
estado Int Yes
fecha_salida Int Yes
usuario_salida Int Yes
_all Int Yes

Articulos_maquinasAvgAggregateOutputType

Name Type Nullable
idArticuloMaquina Float No
maquina Float No
articulo Float No
cantidad Float No
usuario Float No
estado Float No
usuario_salida Float No

Articulos_maquinasSumAggregateOutputType

Name Type Nullable
idArticuloMaquina Int No
maquina Int No
articulo Int No
cantidad Int No
usuario Int No
estado Int No
usuario_salida Int No

Articulos_maquinasMinAggregateOutputType

Name Type Nullable
idArticuloMaquina Int No
maquina Int No
articulo Int No
cantidad Int No
usuario Int No
fecha_hora DateTime No
estado Int No
fecha_salida DateTime No
usuario_salida Int No

Articulos_maquinasMaxAggregateOutputType

Name Type Nullable
idArticuloMaquina Int No
maquina Int No
articulo Int No
cantidad Int No
usuario Int No
fecha_hora DateTime No
estado Int No
fecha_salida DateTime No
usuario_salida Int No

Articulos_saveCountAggregateOutputType

Name Type Nullable
nombre Int Yes
tipo_modelo Int Yes
_all Int Yes

Articulos_saveMinAggregateOutputType

Name Type Nullable
nombre String No
tipo_modelo String No

Articulos_saveMaxAggregateOutputType

Name Type Nullable
nombre String No
tipo_modelo String No

CalendariomenuCountAggregateOutputType

Name Type Nullable
idCalendarioMenu Int Yes
legajo Int Yes
persona_str Int Yes
title Int Yes
descripcion Int Yes
start Int Yes
color Int Yes
textColor Int Yes
end Int Yes
idMenu Int Yes
estado Int Yes
f_registro Int Yes
idMenuBingo Int Yes
turno Int Yes
_all Int Yes

CalendariomenuAvgAggregateOutputType

Name Type Nullable
idCalendarioMenu Float No
idMenu Float No
estado Float No
idMenuBingo Float No

CalendariomenuSumAggregateOutputType

Name Type Nullable
idCalendarioMenu Int No
idMenu Int No
estado Int No
idMenuBingo Int No

CalendariomenuMinAggregateOutputType

Name Type Nullable
idCalendarioMenu Int No
legajo String No
persona_str String No
title String No
descripcion String No
start DateTime No
color String No
textColor String No
end DateTime No
idMenu Int No
estado Int No
f_registro DateTime No
idMenuBingo Int No
turno String No

CalendariomenuMaxAggregateOutputType

Name Type Nullable
idCalendarioMenu Int No
legajo String No
persona_str String No
title String No
descripcion String No
start DateTime No
color String No
textColor String No
end DateTime No
idMenu Int No
estado Int No
f_registro DateTime No
idMenuBingo Int No
turno String No

Calendariomenu_oldCountAggregateOutputType

Name Type Nullable
idCalendarioMenu Int Yes
legajo Int Yes
title Int Yes
descripcion Int Yes
start Int Yes
color Int Yes
textColor Int Yes
end Int Yes
idMenu Int Yes
estado Int Yes
f_registro Int Yes
_all Int Yes

Calendariomenu_oldAvgAggregateOutputType

Name Type Nullable
idCalendarioMenu Float No
idMenu Float No
estado Float No

Calendariomenu_oldSumAggregateOutputType

Name Type Nullable
idCalendarioMenu Int No
idMenu Int No
estado Int No

Calendariomenu_oldMinAggregateOutputType

Name Type Nullable
idCalendarioMenu Int No
legajo String No
title String No
descripcion String No
start DateTime No
color String No
textColor String No
end DateTime No
idMenu Int No
estado Int No
f_registro DateTime No

Calendariomenu_oldMaxAggregateOutputType

Name Type Nullable
idCalendarioMenu Int No
legajo String No
title String No
descripcion String No
start DateTime No
color String No
textColor String No
end DateTime No
idMenu Int No
estado Int No
f_registro DateTime No

CapacitacionCountAggregateOutputType

Name Type Nullable
idCapacitacion Int Yes
descripcion Int Yes
f_inicio Int Yes
f_fin Int Yes
estado Int Yes
tema Int Yes
f_registro Int Yes
usuario Int Yes
capacitador Int Yes
cupo Int Yes
modalidad Int Yes
evaluacion Int Yes
institucion Int Yes
tipo Int Yes
obligatorio Int Yes
sector Int Yes
_all Int Yes

CapacitacionAvgAggregateOutputType

Name Type Nullable
idCapacitacion Float No
estado Float No
usuario Float No
cupo Float No

CapacitacionSumAggregateOutputType

Name Type Nullable
idCapacitacion Int No
estado Int No
usuario Int No
cupo Int No

CapacitacionMinAggregateOutputType

Name Type Nullable
idCapacitacion Int No
descripcion String No
f_inicio DateTime No
f_fin DateTime No
estado Int No
tema String No
f_registro DateTime No
usuario Int No
capacitador String No
cupo Int No
modalidad String No
evaluacion String No
institucion String No
tipo String No
obligatorio String No
sector String No

CapacitacionMaxAggregateOutputType

Name Type Nullable
idCapacitacion Int No
descripcion String No
f_inicio DateTime No
f_fin DateTime No
estado Int No
tema String No
f_registro DateTime No
usuario Int No
capacitador String No
cupo Int No
modalidad String No
evaluacion String No
institucion String No
tipo String No
obligatorio String No
sector String No

Capacitacion_personaCountAggregateOutputType

Name Type Nullable
idCapacitacionPersona Int Yes
idCapacitacion Int Yes
idPersona Int Yes
estado Int Yes
fecha_registro Int Yes
usuario Int Yes
_all Int Yes

Capacitacion_personaAvgAggregateOutputType

Name Type Nullable
idCapacitacionPersona Float No
idCapacitacion Float No
idPersona Float No
estado Float No
usuario Float No

Capacitacion_personaSumAggregateOutputType

Name Type Nullable
idCapacitacionPersona Int No
idCapacitacion Int No
idPersona Int No
estado Int No
usuario Int No

Capacitacion_personaMinAggregateOutputType

Name Type Nullable
idCapacitacionPersona Int No
idCapacitacion Int No
idPersona Int No
estado Int No
fecha_registro DateTime No
usuario Int No

Capacitacion_personaMaxAggregateOutputType

Name Type Nullable
idCapacitacionPersona Int No
idCapacitacion Int No
idPersona Int No
estado Int No
fecha_registro DateTime No
usuario Int No

CodificadosCountAggregateOutputType

Name Type Nullable
gen1 Int Yes
atr1 Int Yes
atr2 Int Yes
atr3 Int Yes
gen1desc Int Yes
atr1desc Int Yes
atr2desc Int Yes
atr3desc Int Yes
_all Int Yes

CodificadosMinAggregateOutputType

Name Type Nullable
gen1 String No
atr1 String No
atr2 String No
atr3 String No
gen1desc String No
atr1desc String No
atr2desc String No
atr3desc String No

CodificadosMaxAggregateOutputType

Name Type Nullable
gen1 String No
atr1 String No
atr2 String No
atr3 String No
gen1desc String No
atr1desc String No
atr2desc String No
atr3desc String No

Conexion_bejermanCountAggregateOutputType

Name Type Nullable
idConexionBejerman Int Yes
username Int Yes
pass Int Yes
estado Int Yes
usuario Int Yes
_all Int Yes

Conexion_bejermanAvgAggregateOutputType

Name Type Nullable
idConexionBejerman Float No
estado Float No
usuario Float No

Conexion_bejermanSumAggregateOutputType

Name Type Nullable
idConexionBejerman Int No
estado Int No
usuario Int No

Conexion_bejermanMinAggregateOutputType

Name Type Nullable
idConexionBejerman Int No
username String No
pass String No
estado Int No
usuario Int No

Conexion_bejermanMaxAggregateOutputType

Name Type Nullable
idConexionBejerman Int No
username String No
pass String No
estado Int No
usuario Int No

ConsolaCountAggregateOutputType

Name Type Nullable
idConsola Int Yes
usuario Int Yes
accion_id Int Yes
accion Int Yes
fecha_registro Int Yes
modulo Int Yes
_all Int Yes

ConsolaAvgAggregateOutputType

Name Type Nullable
idConsola Float No
usuario Float No
accion_id Float No
modulo Float No

ConsolaSumAggregateOutputType

Name Type Nullable
idConsola Int No
usuario Int No
accion_id Int No
modulo Int No

ConsolaMinAggregateOutputType

Name Type Nullable
idConsola Int No
usuario Int No
accion_id Int No
accion String No
fecha_registro DateTime No
modulo Int No

ConsolaMaxAggregateOutputType

Name Type Nullable
idConsola Int No
usuario Int No
accion_id Int No
accion String No
fecha_registro DateTime No
modulo Int No

DesempenoCountAggregateOutputType

Name Type Nullable
idDesempeno Int Yes
idPersona Int Yes
usuario Int Yes
f_registro Int Yes
estado Int Yes
con_tecnico Int Yes
con_operativo Int Yes
precencia_prolijidad Int Yes
puntualidad Int Yes
cumplimiento_modalidad_trabajo Int Yes
vocabulario Int Yes
trabajo_equipo Int Yes
capacidad_organizacion Int Yes
vocacion_servicio Int Yes
capacidad_analisis Int Yes
obs Int Yes
cumplimiento_normas Int Yes
_all Int Yes

DesempenoAvgAggregateOutputType

Name Type Nullable
idDesempeno Float No
idPersona Float No
usuario Float No
estado Float No

DesempenoSumAggregateOutputType

Name Type Nullable
idDesempeno Int No
idPersona Int No
usuario Int No
estado Int No

DesempenoMinAggregateOutputType

Name Type Nullable
idDesempeno Int No
idPersona Int No
usuario Int No
f_registro DateTime No
estado Int No
con_tecnico String No
con_operativo String No
precencia_prolijidad String No
puntualidad String No
cumplimiento_modalidad_trabajo String No
vocabulario String No
trabajo_equipo String No
capacidad_organizacion String No
vocacion_servicio String No
capacidad_analisis String No
obs String No
cumplimiento_normas String No

DesempenoMaxAggregateOutputType

Name Type Nullable
idDesempeno Int No
idPersona Int No
usuario Int No
f_registro DateTime No
estado Int No
con_tecnico String No
con_operativo String No
precencia_prolijidad String No
puntualidad String No
cumplimiento_modalidad_trabajo String No
vocabulario String No
trabajo_equipo String No
capacidad_organizacion String No
vocacion_servicio String No
capacidad_analisis String No
obs String No
cumplimiento_normas String No

Desempeno_evolCountAggregateOutputType

Name Type Nullable
idDesempenoEvol Int Yes
idEvaluador Int Yes
usuario Int Yes
idPersona Int Yes
f_desempeno Int Yes
escucha Int Yes
ayuda_cliente Int Yes
empatia Int Yes
comparte_informacion Int Yes
colabora_pares Int Yes
trabajo_positivo Int Yes
cumple_objetivos Int Yes
acepta_sugerencias Int Yes
situacion_adversas Int Yes
asistencia_puntualidad Int Yes
imagen Int Yes
limpieza_instalaciones Int Yes
limpieza_vestuarios Int Yes
minimiza_perdidas_roturas Int Yes
objetivos Int Yes
cumplimientos_sector Int Yes
estado Int Yes
conocimientos_sector Int Yes
obs Int Yes
_all Int Yes

Desempeno_evolAvgAggregateOutputType

Name Type Nullable
idDesempenoEvol Float No
idEvaluador Float No
usuario Float No
idPersona Float No
escucha Float No
ayuda_cliente Float No
empatia Float No
comparte_informacion Float No
colabora_pares Float No
trabajo_positivo Float No
cumple_objetivos Float No
acepta_sugerencias Float No
situacion_adversas Float No
asistencia_puntualidad Float No
imagen Float No
limpieza_instalaciones Float No
limpieza_vestuarios Float No
minimiza_perdidas_roturas Float No
objetivos Float No
cumplimientos_sector Float No
estado Float No
conocimientos_sector Float No

Desempeno_evolSumAggregateOutputType

Name Type Nullable
idDesempenoEvol Int No
idEvaluador Int No
usuario Int No
idPersona Int No
escucha Int No
ayuda_cliente Int No
empatia Int No
comparte_informacion Int No
colabora_pares Int No
trabajo_positivo Int No
cumple_objetivos Int No
acepta_sugerencias Int No
situacion_adversas Int No
asistencia_puntualidad Int No
imagen Int No
limpieza_instalaciones Int No
limpieza_vestuarios Int No
minimiza_perdidas_roturas Int No
objetivos Int No
cumplimientos_sector Int No
estado Int No
conocimientos_sector Int No

Desempeno_evolMinAggregateOutputType

Name Type Nullable
idDesempenoEvol Int No
idEvaluador Int No
usuario Int No
idPersona Int No
f_desempeno DateTime No
escucha Int No
ayuda_cliente Int No
empatia Int No
comparte_informacion Int No
colabora_pares Int No
trabajo_positivo Int No
cumple_objetivos Int No
acepta_sugerencias Int No
situacion_adversas Int No
asistencia_puntualidad Int No
imagen Int No
limpieza_instalaciones Int No
limpieza_vestuarios Int No
minimiza_perdidas_roturas Int No
objetivos Int No
cumplimientos_sector Int No
estado Int No
conocimientos_sector Int No
obs String No

Desempeno_evolMaxAggregateOutputType

Name Type Nullable
idDesempenoEvol Int No
idEvaluador Int No
usuario Int No
idPersona Int No
f_desempeno DateTime No
escucha Int No
ayuda_cliente Int No
empatia Int No
comparte_informacion Int No
colabora_pares Int No
trabajo_positivo Int No
cumple_objetivos Int No
acepta_sugerencias Int No
situacion_adversas Int No
asistencia_puntualidad Int No
imagen Int No
limpieza_instalaciones Int No
limpieza_vestuarios Int No
minimiza_perdidas_roturas Int No
objetivos Int No
cumplimientos_sector Int No
estado Int No
conocimientos_sector Int No
obs String No

DocumentosCountAggregateOutputType

Name Type Nullable
idDocumentos Int Yes
documento Int Yes
descripcion Int Yes
file Int Yes
path Int Yes
url Int Yes
fecha Int Yes
categoria Int Yes
tipo Int Yes
size Int Yes
sector Int Yes
referencia Int Yes
funcionalidad Int Yes
estado Int Yes
_all Int Yes

DocumentosAvgAggregateOutputType

Name Type Nullable
idDocumentos Float No
sector Float No
referencia Float No

DocumentosSumAggregateOutputType

Name Type Nullable
idDocumentos Int No
sector Int No
referencia Int No

DocumentosMinAggregateOutputType

Name Type Nullable
idDocumentos Int No
documento String No
descripcion String No
file String No
path String No
url String No
fecha DateTime No
categoria String No
tipo String No
size String No
sector Int No
referencia Int No
funcionalidad String No
estado String No

DocumentosMaxAggregateOutputType

Name Type Nullable
idDocumentos Int No
documento String No
descripcion String No
file String No
path String No
url String No
fecha DateTime No
categoria String No
tipo String No
size String No
sector Int No
referencia Int No
funcionalidad String No
estado String No

EstudioCountAggregateOutputType

Name Type Nullable
idEstudio Int Yes
institucion Int Yes
titulo Int Yes
fecha Int Yes
estado Int Yes
tipo Int Yes
_all Int Yes

EstudioAvgAggregateOutputType

Name Type Nullable
idEstudio Float No
institucion Float No
estado Float No

EstudioSumAggregateOutputType

Name Type Nullable
idEstudio Int No
institucion Int No
estado Int No

EstudioMinAggregateOutputType

Name Type Nullable
idEstudio Int No
institucion Int No
titulo String No
fecha DateTime No
estado Int No
tipo String No

EstudioMaxAggregateOutputType

Name Type Nullable
idEstudio Int No
institucion Int No
titulo String No
fecha DateTime No
estado Int No
tipo String No

Estudio_personaCountAggregateOutputType

Name Type Nullable
idEstudio_persona Int Yes
idEstudio Int Yes
idPersona Int Yes
descripcion Int Yes
fecha_registro Int Yes
usuario Int Yes
estado Int Yes
estado_str Int Yes
fecha_inicio Int Yes
fecha_finalizacion Int Yes
_all Int Yes

Estudio_personaAvgAggregateOutputType

Name Type Nullable
idEstudio_persona Float No
idEstudio Float No
idPersona Float No
usuario Float No
estado Float No

Estudio_personaSumAggregateOutputType

Name Type Nullable
idEstudio_persona Int No
idEstudio Int No
idPersona Int No
usuario Int No
estado Int No

Estudio_personaMinAggregateOutputType

Name Type Nullable
idEstudio_persona Int No
idEstudio Int No
idPersona Int No
descripcion String No
fecha_registro DateTime No
usuario Int No
estado Int No
estado_str String No
fecha_inicio DateTime No
fecha_finalizacion DateTime No

Estudio_personaMaxAggregateOutputType

Name Type Nullable
idEstudio_persona Int No
idEstudio Int No
idPersona Int No
descripcion String No
fecha_registro DateTime No
usuario Int No
estado Int No
estado_str String No
fecha_inicio DateTime No
fecha_finalizacion DateTime No

Falla_articuloCountAggregateOutputType

Name Type Nullable
idFallasArticulos Int Yes
falla Int Yes
articulo Int Yes
_all Int Yes

Falla_articuloAvgAggregateOutputType

Name Type Nullable
idFallasArticulos Float No
falla Float No
articulo Float No

Falla_articuloSumAggregateOutputType

Name Type Nullable
idFallasArticulos Int No
falla Int No
articulo Int No

Falla_articuloMinAggregateOutputType

Name Type Nullable
idFallasArticulos Int No
falla Int No
articulo Int No

Falla_articuloMaxAggregateOutputType

Name Type Nullable
idFallasArticulos Int No
falla Int No
articulo Int No

FallasCountAggregateOutputType

Name Type Nullable
idFallas Int Yes
descripcion Int Yes
tipo Int Yes
estado Int Yes
gravedad Int Yes
articulo Int Yes
_all Int Yes

FallasAvgAggregateOutputType

Name Type Nullable
idFallas Float No
estado Float No

FallasSumAggregateOutputType

Name Type Nullable
idFallas Int No
estado Int No

FallasMinAggregateOutputType

Name Type Nullable
idFallas Int No
descripcion String No
tipo String No
estado Int No
gravedad String No
articulo String No

FallasMaxAggregateOutputType

Name Type Nullable
idFallas Int No
descripcion String No
tipo String No
estado Int No
gravedad String No
articulo String No

Fallas_maquinasCountAggregateOutputType

Name Type Nullable
idFallas_maquinas Int Yes
maquina Int Yes
falla Int Yes
fecha_registro Int Yes
estado Int Yes
usuario Int Yes
ticket Int Yes
_all Int Yes

Fallas_maquinasAvgAggregateOutputType

Name Type Nullable
idFallas_maquinas Float No
maquina Float No
falla Float No
estado Float No
usuario Float No
ticket Float No

Fallas_maquinasSumAggregateOutputType

Name Type Nullable
idFallas_maquinas Int No
maquina Int No
falla Int No
estado Int No
usuario Int No
ticket Int No

Fallas_maquinasMinAggregateOutputType

Name Type Nullable
idFallas_maquinas Int No
maquina Int No
falla Int No
fecha_registro DateTime No
estado Int No
usuario Int No
ticket Int No

Fallas_maquinasMaxAggregateOutputType

Name Type Nullable
idFallas_maquinas Int No
maquina Int No
falla Int No
fecha_registro DateTime No
estado Int No
usuario Int No
ticket Int No

FamiliarCountAggregateOutputType

Name Type Nullable
idFamiliar Int Yes
idPersona Int Yes
parentezco Int Yes
documento Int Yes
estado Int Yes
nombre Int Yes
tipo_doc Int Yes
telefono Int Yes
_all Int Yes

FamiliarAvgAggregateOutputType

Name Type Nullable
idFamiliar Float No
idPersona Float No
estado Float No

FamiliarSumAggregateOutputType

Name Type Nullable
idFamiliar Int No
idPersona Int No
estado Int No

FamiliarMinAggregateOutputType

Name Type Nullable
idFamiliar Int No
idPersona Int No
parentezco String No
documento String No
estado Int No
nombre String No
tipo_doc String No
telefono String No

FamiliarMaxAggregateOutputType

Name Type Nullable
idFamiliar Int No
idPersona Int No
parentezco String No
documento String No
estado Int No
nombre String No
tipo_doc String No
telefono String No

FechalimiteprogramadoCountAggregateOutputType

Name Type Nullable
idFechaLimiteProgramado Int Yes
fecha Int Yes
usuario Int Yes
estado Int Yes
f_registro Int Yes
_all Int Yes

FechalimiteprogramadoAvgAggregateOutputType

Name Type Nullable
idFechaLimiteProgramado Float No
usuario Float No
estado Float No

FechalimiteprogramadoSumAggregateOutputType

Name Type Nullable
idFechaLimiteProgramado Int No
usuario Int No
estado Int No

FechalimiteprogramadoMinAggregateOutputType

Name Type Nullable
idFechaLimiteProgramado Int No
fecha DateTime No
usuario Int No
estado Int No
f_registro DateTime No

FechalimiteprogramadoMaxAggregateOutputType

Name Type Nullable
idFechaLimiteProgramado Int No
fecha DateTime No
usuario Int No
estado Int No
f_registro DateTime No

InstitucionCountAggregateOutputType

Name Type Nullable
idInstitucion Int Yes
nombre Int Yes
direccion Int Yes
telefono Int Yes
email Int Yes
web Int Yes
estado Int Yes
_all Int Yes

InstitucionAvgAggregateOutputType

Name Type Nullable
idInstitucion Float No
estado Float No

InstitucionSumAggregateOutputType

Name Type Nullable
idInstitucion Int No
estado Int No

InstitucionMinAggregateOutputType

Name Type Nullable
idInstitucion Int No
nombre String No
direccion String No
telefono String No
email String No
web String No
estado Int No

InstitucionMaxAggregateOutputType

Name Type Nullable
idInstitucion Int No
nombre String No
direccion String No
telefono String No
email String No
web String No
estado Int No

LicenciaCountAggregateOutputType

Name Type Nullable
idLicencia Int Yes
titulo Int Yes
descripcion Int Yes
dias Int Yes
estado Int Yes
_all Int Yes

LicenciaAvgAggregateOutputType

Name Type Nullable
idLicencia Float No
dias Float No
estado Float No

LicenciaSumAggregateOutputType

Name Type Nullable
idLicencia Int No
dias Int No
estado Int No

LicenciaMinAggregateOutputType

Name Type Nullable
idLicencia Int No
titulo String No
descripcion String No
dias Int No
estado Int No

LicenciaMaxAggregateOutputType

Name Type Nullable
idLicencia Int No
titulo String No
descripcion String No
dias Int No
estado Int No

Licencia_personaCountAggregateOutputType

Name Type Nullable
idLicenciaPersona Int Yes
idLicencia Int Yes
idPersona Int Yes
fecha_registro Int Yes
usuario Int Yes
estado Int Yes
descripcion Int Yes
documento Int Yes
dias Int Yes
f_inicio Int Yes
f_fin Int Yes
_all Int Yes

Licencia_personaAvgAggregateOutputType

Name Type Nullable
idLicenciaPersona Float No
idLicencia Float No
idPersona Float No
usuario Float No
estado Float No
dias Float No

Licencia_personaSumAggregateOutputType

Name Type Nullable
idLicenciaPersona Int No
idLicencia Int No
idPersona Int No
usuario Int No
estado Int No
dias Int No

Licencia_personaMinAggregateOutputType

Name Type Nullable
idLicenciaPersona Int No
idLicencia Int No
idPersona Int No
fecha_registro DateTime No
usuario Int No
estado Int No
descripcion String No
documento String No
dias Int No
f_inicio DateTime No
f_fin DateTime No

Licencia_personaMaxAggregateOutputType

Name Type Nullable
idLicenciaPersona Int No
idLicencia Int No
idPersona Int No
fecha_registro DateTime No
usuario Int No
estado Int No
descripcion String No
documento String No
dias Int No
f_inicio DateTime No
f_fin DateTime No

MaquinasCountAggregateOutputType

Name Type Nullable
idMaquina Int Yes
nro_egm Int Yes
fabricante Int Yes
modelo Int Yes
p_pago Int Yes
denom Int Yes
juego Int Yes
nro_serie Int Yes
programa Int Yes
credito Int Yes
estado Int Yes
img Int Yes
ap_minima Int Yes
ap_maxima Int Yes
cant_lineas Int Yes
tipo_juego Int Yes
_all Int Yes

MaquinasAvgAggregateOutputType

Name Type Nullable
idMaquina Float No
nro_egm Float No

MaquinasSumAggregateOutputType

Name Type Nullable
idMaquina Int No
nro_egm Int No

MaquinasMinAggregateOutputType

Name Type Nullable
idMaquina Int No
nro_egm Int No
fabricante String No
modelo String No
p_pago String No
denom String No
juego String No
nro_serie String No
programa String No
credito String No
estado String No
img String No
ap_minima String No
ap_maxima String No
cant_lineas String No
tipo_juego String No

MaquinasMaxAggregateOutputType

Name Type Nullable
idMaquina Int No
nro_egm Int No
fabricante String No
modelo String No
p_pago String No
denom String No
juego String No
nro_serie String No
programa String No
credito String No
estado String No
img String No
ap_minima String No
ap_maxima String No
cant_lineas String No
tipo_juego String No

Maquinas_piezasCountAggregateOutputType

Name Type Nullable
nro_egm Int Yes
modelo Int Yes
tipo_aceptbill Int Yes
tipo_impre Int Yes
tipo_moni Int Yes
_all Int Yes

Maquinas_piezasAvgAggregateOutputType

Name Type Nullable
nro_egm Float No

Maquinas_piezasSumAggregateOutputType

Name Type Nullable
nro_egm Int No

Maquinas_piezasMinAggregateOutputType

Name Type Nullable
nro_egm Int No
modelo String No
tipo_aceptbill String No
tipo_impre String No
tipo_moni String No

Maquinas_piezasMaxAggregateOutputType

Name Type Nullable
nro_egm Int No
modelo String No
tipo_aceptbill String No
tipo_impre String No
tipo_moni String No

Menu_personalCountAggregateOutputType

Name Type Nullable
idMenuPersonal Int Yes
estado Int Yes
f_proceso Int Yes
descripcion Int Yes
usuario_carga Int Yes
fecha_menu Int Yes
tipo_menu Int Yes
valor Int Yes
_all Int Yes

Menu_personalAvgAggregateOutputType

Name Type Nullable
idMenuPersonal Float No
estado Float No
usuario_carga Float No
valor Decimal No

Menu_personalSumAggregateOutputType

Name Type Nullable
idMenuPersonal Int No
estado Int No
usuario_carga Int No
valor Decimal No

Menu_personalMinAggregateOutputType

Name Type Nullable
idMenuPersonal Int No
estado Int No
f_proceso DateTime No
descripcion String No
usuario_carga Int No
fecha_menu DateTime No
tipo_menu String No
valor Decimal No

Menu_personalMaxAggregateOutputType

Name Type Nullable
idMenuPersonal Int No
estado Int No
f_proceso DateTime No
descripcion String No
usuario_carga Int No
fecha_menu DateTime No
tipo_menu String No
valor Decimal No

Menu_personal_20190904CountAggregateOutputType

Name Type Nullable
idMenuPersonal Int Yes
estado Int Yes
f_proceso Int Yes
descripcion Int Yes
usuario_carga Int Yes
fecha_menu Int Yes
_all Int Yes

Menu_personal_20190904AvgAggregateOutputType

Name Type Nullable
idMenuPersonal Float No
estado Float No
usuario_carga Float No

Menu_personal_20190904SumAggregateOutputType

Name Type Nullable
idMenuPersonal Int No
estado Int No
usuario_carga Int No

Menu_personal_20190904MinAggregateOutputType

Name Type Nullable
idMenuPersonal Int No
estado Int No
f_proceso DateTime No
descripcion String No
usuario_carga Int No
fecha_menu DateTime No

Menu_personal_20190904MaxAggregateOutputType

Name Type Nullable
idMenuPersonal Int No
estado Int No
f_proceso DateTime No
descripcion String No
usuario_carga Int No
fecha_menu DateTime No

Menu_personal_oldCountAggregateOutputType

Name Type Nullable
idMenuPersonal Int Yes
estado Int Yes
f_proceso Int Yes
descripcion Int Yes
usuario_carga Int Yes
fecha_menu Int Yes
_all Int Yes

Menu_personal_oldAvgAggregateOutputType

Name Type Nullable
idMenuPersonal Float No
estado Float No
usuario_carga Float No

Menu_personal_oldSumAggregateOutputType

Name Type Nullable
idMenuPersonal Int No
estado Int No
usuario_carga Int No

Menu_personal_oldMinAggregateOutputType

Name Type Nullable
idMenuPersonal Int No
estado Int No
f_proceso DateTime No
descripcion String No
usuario_carga Int No
fecha_menu DateTime No

Menu_personal_oldMaxAggregateOutputType

Name Type Nullable
idMenuPersonal Int No
estado Int No
f_proceso DateTime No
descripcion String No
usuario_carga Int No
fecha_menu DateTime No

Movimiento_articuloCountAggregateOutputType

Name Type Nullable
idMovimiento_articulo Int Yes
articulo Int Yes
cantidad Int Yes
fecha_hora Int Yes
movimiento Int Yes
usuario Int Yes
locacion Int Yes
_all Int Yes

Movimiento_articuloAvgAggregateOutputType

Name Type Nullable
idMovimiento_articulo Float No
articulo Float No
cantidad Float No
usuario Float No

Movimiento_articuloSumAggregateOutputType

Name Type Nullable
idMovimiento_articulo Int No
articulo Int No
cantidad Int No
usuario Int No

Movimiento_articuloMinAggregateOutputType

Name Type Nullable
idMovimiento_articulo Int No
articulo Int No
cantidad Int No
fecha_hora DateTime No
movimiento String No
usuario Int No
locacion String No

Movimiento_articuloMaxAggregateOutputType

Name Type Nullable
idMovimiento_articulo Int No
articulo Int No
cantidad Int No
fecha_hora DateTime No
movimiento String No
usuario Int No
locacion String No

NovedadesCountAggregateOutputType

Name Type Nullable
idNovedades Int Yes
texto Int Yes
referencia Int Yes
estado Int Yes
f_proceso Int Yes
usuario Int Yes
tipo Int Yes
_all Int Yes

NovedadesAvgAggregateOutputType

Name Type Nullable
idNovedades Float No
referencia Float No
estado Float No
usuario Float No

NovedadesSumAggregateOutputType

Name Type Nullable
idNovedades Int No
referencia Int No
estado Int No
usuario Int No

NovedadesMinAggregateOutputType

Name Type Nullable
idNovedades Int No
texto String No
referencia Int No
estado Int No
f_proceso DateTime No
usuario Int No
tipo String No

NovedadesMaxAggregateOutputType

Name Type Nullable
idNovedades Int No
texto String No
referencia Int No
estado Int No
f_proceso DateTime No
usuario Int No
tipo String No

NumericoCountAggregateOutputType

Name Type Nullable
numericocol Int Yes
_all Int Yes

NumericoAvgAggregateOutputType

Name Type Nullable
numericocol Float No

NumericoSumAggregateOutputType

Name Type Nullable
numericocol Int No

NumericoMinAggregateOutputType

Name Type Nullable
numericocol Int No

NumericoMaxAggregateOutputType

Name Type Nullable
numericocol Int No

Parametro_menuCountAggregateOutputType

Name Type Nullable
idParametroMenu Int Yes
dia Int Yes
tiempo Int Yes
cantidad Int Yes
f_proceso Int Yes
usuario_carga Int Yes
estado Int Yes
_all Int Yes

Parametro_menuAvgAggregateOutputType

Name Type Nullable
idParametroMenu Float No
cantidad Float No
usuario_carga Float No
estado Float No

Parametro_menuSumAggregateOutputType

Name Type Nullable
idParametroMenu Int No
cantidad Int No
usuario_carga Int No
estado Int No

Parametro_menuMinAggregateOutputType

Name Type Nullable
idParametroMenu Int No
dia String No
tiempo String No
cantidad Int No
f_proceso DateTime No
usuario_carga Int No
estado Int No

Parametro_menuMaxAggregateOutputType

Name Type Nullable
idParametroMenu Int No
dia String No
tiempo String No
cantidad Int No
f_proceso DateTime No
usuario_carga Int No
estado Int No

PedidoCountAggregateOutputType

Name Type Nullable
idPedido Int Yes
idCalendarioMenu Int Yes
idMenu Int Yes
usuario Int Yes
f_registro Int Yes
f_listo Int Yes
estado Int Yes
persona Int Yes
legajo Int Yes
persona_str Int Yes
descripcion Int Yes
importe_externo Int Yes
importe_interno Int Yes
idMenuBingo Int Yes
turno Int Yes
_all Int Yes

PedidoAvgAggregateOutputType

Name Type Nullable
idPedido Float No
idCalendarioMenu Float No
idMenu Float No
usuario Float No
estado Float No
persona Float No
importe_externo Decimal No
importe_interno Decimal No
idMenuBingo Float No

PedidoSumAggregateOutputType

Name Type Nullable
idPedido Int No
idCalendarioMenu Int No
idMenu Int No
usuario Int No
estado Int No
persona Int No
importe_externo Decimal No
importe_interno Decimal No
idMenuBingo Int No

PedidoMinAggregateOutputType

Name Type Nullable
idPedido Int No
idCalendarioMenu Int No
idMenu Int No
usuario Int No
f_registro DateTime No
f_listo DateTime No
estado Int No
persona Int No
legajo String No
persona_str String No
descripcion String No
importe_externo Decimal No
importe_interno Decimal No
idMenuBingo Int No
turno String No

PedidoMaxAggregateOutputType

Name Type Nullable
idPedido Int No
idCalendarioMenu Int No
idMenu Int No
usuario Int No
f_registro DateTime No
f_listo DateTime No
estado Int No
persona Int No
legajo String No
persona_str String No
descripcion String No
importe_externo Decimal No
importe_interno Decimal No
idMenuBingo Int No
turno String No

Pedido_oldCountAggregateOutputType

Name Type Nullable
idPedido Int Yes
idCalendarioMenu Int Yes
idMenu Int Yes
usuario Int Yes
f_registro Int Yes
f_listo Int Yes
estado Int Yes
persona Int Yes
legajo Int Yes
persona_str Int Yes
descripcion Int Yes
_all Int Yes

Pedido_oldAvgAggregateOutputType

Name Type Nullable
idPedido Float No
idCalendarioMenu Float No
idMenu Float No
usuario Float No
estado Float No
persona Float No

Pedido_oldSumAggregateOutputType

Name Type Nullable
idPedido Int No
idCalendarioMenu Int No
idMenu Int No
usuario Int No
estado Int No
persona Int No

Pedido_oldMinAggregateOutputType

Name Type Nullable
idPedido Int No
idCalendarioMenu Int No
idMenu Int No
usuario Int No
f_registro DateTime No
f_listo DateTime No
estado Int No
persona Int No
legajo String No
persona_str String No
descripcion String No

Pedido_oldMaxAggregateOutputType

Name Type Nullable
idPedido Int No
idCalendarioMenu Int No
idMenu Int No
usuario Int No
f_registro DateTime No
f_listo DateTime No
estado Int No
persona Int No
legajo String No
persona_str String No
descripcion String No

PermisosCountAggregateOutputType

Name Type Nullable
idPermiso Int Yes
nombre Int Yes
permisos Int Yes
estado Int Yes
fecha_registro Int Yes
_all Int Yes

PermisosAvgAggregateOutputType

Name Type Nullable
idPermiso Float No

PermisosSumAggregateOutputType

Name Type Nullable
idPermiso Int No

PermisosMinAggregateOutputType

Name Type Nullable
idPermiso Int No
nombre String No
permisos String No
estado Boolean No
fecha_registro DateTime No

PermisosMaxAggregateOutputType

Name Type Nullable
idPermiso Int No
nombre String No
permisos String No
estado Boolean No
fecha_registro DateTime No

PersonaCountAggregateOutputType

Name Type Nullable
id Int Yes
nombre Int Yes
apellido Int Yes
alta Int Yes
id_tarjeta Int Yes
legajo Int Yes
preciohora Int Yes
extras Int Yes
id_bioadmin Int Yes
imagen Int Yes
inc_reportes Int Yes
eliminado Int Yes
fecha_ingreso Int Yes
contrasena Int Yes
rol Int Yes
direccion Int Yes
dni Int Yes
email Int Yes
cel Int Yes
tel Int Yes
cp Int Yes
vehiculo Int Yes
patente Int Yes
id_provincia Int Yes
localidad Int Yes
id_calendario Int Yes
tarjetazk Int Yes
fecha_venc Int Yes
id_sector_por_empresa Int Yes
remoto_password Int Yes
envio_tarde Int Yes
ultima_fecha_envio_tarde Int Yes
email_trabajo Int Yes
cuil Int Yes
pass_myweb Int Yes
modulos_habilitados Int Yes
IDPHONE Int Yes
ES_VISITA Int Yes
V_EMPRESA_ORIGEN Int Yes
V_EMPLEADO_VISITA Int Yes
V_PERTENENCIAS Int Yes
V_NRO_ART Int Yes
V_MOTIVO_VISITA Int Yes
V_VENCIDO Int Yes
FECHA_NACIMIENTO Int Yes
PUESTO_TRABAJO Int Yes
_all Int Yes

PersonaAvgAggregateOutputType

Name Type Nullable
id Float No
id_tarjeta Float No
preciohora Decimal No
extras Float No
id_bioadmin Float No
inc_reportes Float No
rol Float No
id_provincia Float No
id_calendario Float No
id_sector_por_empresa Float No
envio_tarde Float No
ES_VISITA Float No
V_EMPLEADO_VISITA Float No
V_VENCIDO Float No

PersonaSumAggregateOutputType

Name Type Nullable
id Int No
id_tarjeta Int No
preciohora Decimal No
extras Int No
id_bioadmin Int No
inc_reportes Int No
rol Int No
id_provincia Int No
id_calendario Int No
id_sector_por_empresa Int No
envio_tarde Int No
ES_VISITA Int No
V_EMPLEADO_VISITA Int No
V_VENCIDO Int No

PersonaMinAggregateOutputType

Name Type Nullable
id Int No
nombre String No
apellido String No
alta DateTime No
id_tarjeta Int No
legajo String No
preciohora Decimal No
extras Int No
id_bioadmin Int No
imagen Bytes No
inc_reportes Int No
eliminado DateTime No
fecha_ingreso DateTime No
contrasena String No
rol Int No
direccion String No
dni String No
email String No
cel String No
tel String No
cp String No
vehiculo String No
patente String No
id_provincia Int No
localidad String No
id_calendario Int No
tarjetazk String No
fecha_venc DateTime No
id_sector_por_empresa Int No
remoto_password String No
envio_tarde Int No
ultima_fecha_envio_tarde DateTime No
email_trabajo String No
cuil String No
pass_myweb String No
modulos_habilitados String No
IDPHONE String No
ES_VISITA Int No
V_EMPRESA_ORIGEN String No
V_EMPLEADO_VISITA Int No
V_PERTENENCIAS String No
V_NRO_ART String No
V_MOTIVO_VISITA String No
V_VENCIDO Int No
FECHA_NACIMIENTO DateTime No
PUESTO_TRABAJO String No

PersonaMaxAggregateOutputType

Name Type Nullable
id Int No
nombre String No
apellido String No
alta DateTime No
id_tarjeta Int No
legajo String No
preciohora Decimal No
extras Int No
id_bioadmin Int No
imagen Bytes No
inc_reportes Int No
eliminado DateTime No
fecha_ingreso DateTime No
contrasena String No
rol Int No
direccion String No
dni String No
email String No
cel String No
tel String No
cp String No
vehiculo String No
patente String No
id_provincia Int No
localidad String No
id_calendario Int No
tarjetazk String No
fecha_venc DateTime No
id_sector_por_empresa Int No
remoto_password String No
envio_tarde Int No
ultima_fecha_envio_tarde DateTime No
email_trabajo String No
cuil String No
pass_myweb String No
modulos_habilitados String No
IDPHONE String No
ES_VISITA Int No
V_EMPRESA_ORIGEN String No
V_EMPLEADO_VISITA Int No
V_PERTENENCIAS String No
V_NRO_ART String No
V_MOTIVO_VISITA String No
V_VENCIDO Int No
FECHA_NACIMIENTO DateTime No
PUESTO_TRABAJO String No

PremioCountAggregateOutputType

Name Type Nullable
idPremio Int Yes
nombre Int Yes
descripcion Int Yes
img Int Yes
estado Int Yes
f_premio Int Yes
f_proceso Int Yes
tipo Int Yes
mes_cumplido Int Yes
_all Int Yes

PremioAvgAggregateOutputType

Name Type Nullable
idPremio Float No
estado Float No
mes_cumplido Float No

PremioSumAggregateOutputType

Name Type Nullable
idPremio Int No
estado Int No
mes_cumplido Int No

PremioMinAggregateOutputType

Name Type Nullable
idPremio Int No
nombre String No
descripcion String No
img String No
estado Int No
f_premio DateTime No
f_proceso DateTime No
tipo String No
mes_cumplido Int No

PremioMaxAggregateOutputType

Name Type Nullable
idPremio Int No
nombre String No
descripcion String No
img String No
estado Int No
f_premio DateTime No
f_proceso DateTime No
tipo String No
mes_cumplido Int No

Premio_personaCountAggregateOutputType

Name Type Nullable
idPremioPersona Int Yes
idPremio Int Yes
idPersona Int Yes
descripcion Int Yes
fecha_entrega Int Yes
tipo Int Yes
estado Int Yes
usuario Int Yes
fecha_registro Int Yes
_all Int Yes

Premio_personaAvgAggregateOutputType

Name Type Nullable
idPremioPersona Float No
idPremio Float No
idPersona Float No
estado Float No
usuario Float No

Premio_personaSumAggregateOutputType

Name Type Nullable
idPremioPersona Int No
idPremio Int No
idPersona Int No
estado Int No
usuario Int No

Premio_personaMinAggregateOutputType

Name Type Nullable
idPremioPersona Int No
idPremio Int No
idPersona Int No
descripcion String No
fecha_entrega DateTime No
tipo String No
estado Int No
usuario Int No
fecha_registro DateTime No

Premio_personaMaxAggregateOutputType

Name Type Nullable
idPremioPersona Int No
idPremio Int No
idPersona Int No
descripcion String No
fecha_entrega DateTime No
tipo String No
estado Int No
usuario Int No
fecha_registro DateTime No

SalaCountAggregateOutputType

Name Type Nullable
idSala Int Yes
title Int Yes
descripcion Int Yes
color Int Yes
textColor Int Yes
start Int Yes
end Int Yes
estado Int Yes
f_creacion Int Yes
usuario Int Yes
_all Int Yes

SalaAvgAggregateOutputType

Name Type Nullable
idSala Float No
estado Float No
usuario Float No

SalaSumAggregateOutputType

Name Type Nullable
idSala Int No
estado Int No
usuario Int No

SalaMinAggregateOutputType

Name Type Nullable
idSala Int No
title String No
descripcion String No
color String No
textColor String No
start String No
end String No
estado Int No
f_creacion DateTime No
usuario Int No

SalaMaxAggregateOutputType

Name Type Nullable
idSala Int No
title String No
descripcion String No
color String No
textColor String No
start String No
end String No
estado Int No
f_creacion DateTime No
usuario Int No

Sala_copyCountAggregateOutputType

Name Type Nullable
idSala Int Yes
title Int Yes
descripcion Int Yes
color Int Yes
textColor Int Yes
start Int Yes
end Int Yes
estado Int Yes
f_creacion Int Yes
usuario Int Yes
_all Int Yes

Sala_copyAvgAggregateOutputType

Name Type Nullable
idSala Float No
estado Float No
usuario Float No

Sala_copySumAggregateOutputType

Name Type Nullable
idSala Int No
estado Int No
usuario Int No

Sala_copyMinAggregateOutputType

Name Type Nullable
idSala Int No
title String No
descripcion String No
color String No
textColor String No
start DateTime No
end DateTime No
estado Int No
f_creacion DateTime No
usuario Int No

Sala_copyMaxAggregateOutputType

Name Type Nullable
idSala Int No
title String No
descripcion String No
color String No
textColor String No
start DateTime No
end DateTime No
estado Int No
f_creacion DateTime No
usuario Int No

SectorCountAggregateOutputType

Name Type Nullable
idSector Int Yes
nombre Int Yes
estado Int Yes
_all Int Yes

SectorAvgAggregateOutputType

Name Type Nullable
idSector Float No
estado Float No

SectorSumAggregateOutputType

Name Type Nullable
idSector Int No
estado Int No

SectorMinAggregateOutputType

Name Type Nullable
idSector Int No
nombre String No
estado Int No

SectorMaxAggregateOutputType

Name Type Nullable
idSector Int No
nombre String No
estado Int No

Seleccion_personalCountAggregateOutputType

Name Type Nullable
idSeleccion_personal Int Yes
nombre Int Yes
apellido Int Yes
domicilio Int Yes
contacto Int Yes
fuente_reclutamiento Int Yes
descripcion Int Yes
estado Int Yes
f_proceso Int Yes
meta_estado Int Yes
fecha_meta_estado Int Yes
sector Int Yes
_all Int Yes

Seleccion_personalAvgAggregateOutputType

Name Type Nullable
idSeleccion_personal Float No
estado Float No
sector Float No

Seleccion_personalSumAggregateOutputType

Name Type Nullable
idSeleccion_personal Int No
estado Int No
sector Int No

Seleccion_personalMinAggregateOutputType

Name Type Nullable
idSeleccion_personal Int No
nombre String No
apellido String No
domicilio String No
contacto String No
fuente_reclutamiento String No
descripcion String No
estado Int No
f_proceso DateTime No
meta_estado String No
fecha_meta_estado DateTime No
sector Int No

Seleccion_personalMaxAggregateOutputType

Name Type Nullable
idSeleccion_personal Int No
nombre String No
apellido String No
domicilio String No
contacto String No
fuente_reclutamiento String No
descripcion String No
estado Int No
f_proceso DateTime No
meta_estado String No
fecha_meta_estado DateTime No
sector Int No

Slot_testCountAggregateOutputType

Name Type Nullable
tst_id Int Yes
tst_egm Int Yes
tst_srl_acept Int Yes
tst_srl_impr Int Yes
tst_srl_monit Int Yes
tst_srl_bckpln Int Yes
tst_srl_mother Int Yes
tst_hora_fecha Int Yes
_all Int Yes

Slot_testAvgAggregateOutputType

Name Type Nullable
tst_id Float No
tst_egm Float No

Slot_testSumAggregateOutputType

Name Type Nullable
tst_id Int No
tst_egm Int No

Slot_testMinAggregateOutputType

Name Type Nullable
tst_id Int No
tst_egm Int No
tst_srl_acept String No
tst_srl_impr String No
tst_srl_monit String No
tst_srl_bckpln String No
tst_srl_mother String No
tst_hora_fecha DateTime No

Slot_testMaxAggregateOutputType

Name Type Nullable
tst_id Int No
tst_egm Int No
tst_srl_acept String No
tst_srl_impr String No
tst_srl_monit String No
tst_srl_bckpln String No
tst_srl_mother String No
tst_hora_fecha DateTime No

Stock_bejermanCountAggregateOutputType

Name Type Nullable
stkart_codgen Int Yes
skart_codEle1 Int Yes
skart_codEle2 Int Yes
skart_codEle3 Int Yes
deposito Int Yes
cantidad Int Yes
f_carga_bejerman Int Yes
autor Int Yes
id_stock_bejerman Int Yes
_all Int Yes

Stock_bejermanAvgAggregateOutputType

Name Type Nullable
id_stock_bejerman Float No

Stock_bejermanSumAggregateOutputType

Name Type Nullable
id_stock_bejerman Int No

Stock_bejermanMinAggregateOutputType

Name Type Nullable
stkart_codgen String No
skart_codEle1 String No
skart_codEle2 String No
skart_codEle3 String No
deposito String No
cantidad String No
f_carga_bejerman String No
autor String No
id_stock_bejerman Int No

Stock_bejermanMaxAggregateOutputType

Name Type Nullable
stkart_codgen String No
skart_codEle1 String No
skart_codEle2 String No
skart_codEle3 String No
deposito String No
cantidad String No
f_carga_bejerman String No
autor String No
id_stock_bejerman Int No

TemaCountAggregateOutputType

Name Type Nullable
idTema Int Yes
nombre Int Yes
estado Int Yes
_all Int Yes

TemaAvgAggregateOutputType

Name Type Nullable
idTema Float No
estado Float No

TemaSumAggregateOutputType

Name Type Nullable
idTema Int No
estado Int No

TemaMinAggregateOutputType

Name Type Nullable
idTema Int No
nombre String No
estado Int No

TemaMaxAggregateOutputType

Name Type Nullable
idTema Int No
nombre String No
estado Int No

TicketCountAggregateOutputType

Name Type Nullable
idTicket Int Yes
solicita Int Yes
idAsignado Int Yes
referencia Int Yes
descripcion Int Yes
prioridad Int Yes
estado Int Yes
f_solicitud Int Yes
f_respuesta Int Yes
modulo Int Yes
submodulo Int Yes
categoria Int Yes
tipo Int Yes
f_cierre Int Yes
f_proceso Int Yes
f_atencion Int Yes
sector Int Yes
_all Int Yes

TicketAvgAggregateOutputType

Name Type Nullable
idTicket Float No
solicita Float No
idAsignado Float No
referencia Float No
sector Float No

TicketSumAggregateOutputType

Name Type Nullable
idTicket Int No
solicita Int No
idAsignado Int No
referencia Int No
sector Int No

TicketMinAggregateOutputType

Name Type Nullable
idTicket Int No
solicita Int No
idAsignado Int No
referencia Int No
descripcion String No
prioridad String No
estado Boolean No
f_solicitud DateTime No
f_respuesta DateTime No
modulo String No
submodulo String No
categoria String No
tipo String No
f_cierre DateTime No
f_proceso DateTime No
f_atencion DateTime No
sector Int No

TicketMaxAggregateOutputType

Name Type Nullable
idTicket Int No
solicita Int No
idAsignado Int No
referencia Int No
descripcion String No
prioridad String No
estado Boolean No
f_solicitud DateTime No
f_respuesta DateTime No
modulo String No
submodulo String No
categoria String No
tipo String No
f_cierre DateTime No
f_proceso DateTime No
f_atencion DateTime No
sector Int No

TituloCountAggregateOutputType

Name Type Nullable
idTitulo Int Yes
nombre Int Yes
estado Int Yes
_all Int Yes

TituloAvgAggregateOutputType

Name Type Nullable
idTitulo Float No
estado Float No

TituloSumAggregateOutputType

Name Type Nullable
idTitulo Int No
estado Int No

TituloMinAggregateOutputType

Name Type Nullable
idTitulo Int No
nombre String No
estado Int No

TituloMaxAggregateOutputType

Name Type Nullable
idTitulo Int No
nombre String No
estado Int No

UniformeCountAggregateOutputType

Name Type Nullable
idUniforme Int Yes
prenda Int Yes
tipo_prenda Int Yes
talle Int Yes
cantidad Int Yes
estado Int Yes
_all Int Yes

UniformeAvgAggregateOutputType

Name Type Nullable
idUniforme Float No
cantidad Float No
estado Float No

UniformeSumAggregateOutputType

Name Type Nullable
idUniforme Int No
cantidad Int No
estado Int No

UniformeMinAggregateOutputType

Name Type Nullable
idUniforme Int No
prenda String No
tipo_prenda String No
talle String No
cantidad Int No
estado Int No

UniformeMaxAggregateOutputType

Name Type Nullable
idUniforme Int No
prenda String No
tipo_prenda String No
talle String No
cantidad Int No
estado Int No

Uniforme_has_personaCountAggregateOutputType

Name Type Nullable
idUniforme_has_persona Int Yes
idUniforme Int Yes
idPersona Int Yes
f_proceso Int Yes
detalle Int Yes
descripcion Int Yes
usuario Int Yes
estado Int Yes
_all Int Yes

Uniforme_has_personaAvgAggregateOutputType

Name Type Nullable
idUniforme_has_persona Float No
idPersona Float No
usuario Float No
estado Float No

Uniforme_has_personaSumAggregateOutputType

Name Type Nullable
idUniforme_has_persona Int No
idPersona Int No
usuario Int No
estado Int No

Uniforme_has_personaMinAggregateOutputType

Name Type Nullable
idUniforme_has_persona Int No
idUniforme String No
idPersona Int No
f_proceso DateTime No
detalle String No
descripcion String No
usuario Int No
estado Int No

Uniforme_has_personaMaxAggregateOutputType

Name Type Nullable
idUniforme_has_persona Int No
idUniforme String No
idPersona Int No
f_proceso DateTime No
detalle String No
descripcion String No
usuario Int No
estado Int No

UsuariosCountAggregateOutputType

Name Type Nullable
idUsuarios Int Yes
nombre Int Yes
usr Int Yes
email Int Yes
clave Int Yes
celular Int Yes
estado Int Yes
permisos_id Int Yes
fecha_registro Int Yes
legajo Int Yes
_all Int Yes

UsuariosAvgAggregateOutputType

Name Type Nullable
idUsuarios Float No
permisos_id Float No

UsuariosSumAggregateOutputType

Name Type Nullable
idUsuarios Int No
permisos_id Int No

UsuariosMinAggregateOutputType

Name Type Nullable
idUsuarios Int No
nombre String No
usr String No
email String No
clave String No
celular String No
estado Boolean No
permisos_id Int No
fecha_registro DateTime No
legajo String No

UsuariosMaxAggregateOutputType

Name Type Nullable
idUsuarios Int No
nombre String No
usr String No
email String No
clave String No
celular String No
estado Boolean No
permisos_id Int No
fecha_registro DateTime No
legajo String No

Vacuna_personaCountAggregateOutputType

Name Type Nullable
idVacunaPersona Int Yes
idPersona Int Yes
tipo Int Yes
dosis Int Yes
estado Int Yes
marca Int Yes
fecha_vacuna Int Yes
fecha_registro Int Yes
_all Int Yes

Vacuna_personaAvgAggregateOutputType

Name Type Nullable
idVacunaPersona Float No
estado Float No

Vacuna_personaSumAggregateOutputType

Name Type Nullable
idVacunaPersona Int No
estado Int No

Vacuna_personaMinAggregateOutputType

Name Type Nullable
idVacunaPersona Int No
idPersona String No
tipo String No
dosis String No
estado Int No
marca String No
fecha_vacuna DateTime No
fecha_registro DateTime No

Vacuna_personaMaxAggregateOutputType

Name Type Nullable
idVacunaPersona Int No
idPersona String No
tipo String No
dosis String No
estado Int No
marca String No
fecha_vacuna DateTime No
fecha_registro DateTime No

ValormenuCountAggregateOutputType

Name Type Nullable
idValorMenu Int Yes
importe_externo Int Yes
f_registro Int Yes
usuario Int Yes
estado Int Yes
importe_interno Int Yes
_all Int Yes

ValormenuAvgAggregateOutputType

Name Type Nullable
idValorMenu Float No
importe_externo Decimal No
usuario Float No
estado Float No
importe_interno Decimal No

ValormenuSumAggregateOutputType

Name Type Nullable
idValorMenu Int No
importe_externo Decimal No
usuario Int No
estado Int No
importe_interno Decimal No

ValormenuMinAggregateOutputType

Name Type Nullable
idValorMenu Int No
importe_externo Decimal No
f_registro DateTime No
usuario Int No
estado Int No
importe_interno Decimal No

ValormenuMaxAggregateOutputType

Name Type Nullable
idValorMenu Int No
importe_externo Decimal No
f_registro DateTime No
usuario Int No
estado Int No
importe_interno Decimal No